mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
Ensures all keypresses are entered as upper case.
This commit is contained in:
parent
4dbd1f1358
commit
5107c7c23d
@ -368,7 +368,7 @@ class ConcreteMachine:
|
||||
}
|
||||
}
|
||||
|
||||
keyboard_input_ = static_cast<uint8_t>(value | 0x80);
|
||||
keyboard_input_ = static_cast<uint8_t>(toupper(value) | 0x80);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user