This commit is contained in:
Julian Barathieu 2020-01-20 20:05:03 +01:00
parent 057052244c
commit e8deefc741
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ static bool altPressed = 0;
static bool shiftPressed = 0;
static bool controlPressed = 0;
void KeybPrint(uchar _code)
static void KeybPrint(uchar _code)
{
uint code = (uint)_code;

View File

@ -95,7 +95,7 @@ const uint RegularScanCodes[2 * 256] =
ENTRY (0x34, ':', CAPSLOCK),
ENTRY (0x35, '!', CAPSLOCK),
ENTRY (0x39, ' ', NONE),
ENTRY (0x39, ' ', NONE),
};
const uint LeftShiftScanCodes[2 * 256] =
@ -161,7 +161,7 @@ const uint LeftShiftScanCodes[2 * 256] =
ENTRY (0x34, '/', NONE),
ENTRY (0x35, '!', NONE),
ENTRY (0x39, ' ', NONE),
ENTRY (0x39, ' ', NONE),
};
const uint LeftAltScanCodes[2 * 256];