1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Ensures all keypresses are entered as upper case.

This commit is contained in:
Thomas Harte 2018-05-13 22:40:28 -04:00
parent 4dbd1f1358
commit 5107c7c23d

View File

@ -368,7 +368,7 @@ class ConcreteMachine:
}
}
keyboard_input_ = static_cast<uint8_t>(value | 0x80);
keyboard_input_ = static_cast<uint8_t>(toupper(value) | 0x80);
}
}