1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

Merge branch 'shell' into BetterMemory

This commit is contained in:
Adrien Bourmault 2020-01-21 11:24:30 +01:00
commit 0ebb53d312
2 changed files with 5 additions and 1 deletions

View File

@ -96,6 +96,11 @@ const uint RegularScanCodes[2 * 256] =
ENTRY (0x35, '!', CAPSLOCK),
ENTRY (0x39, ' ', NONE),
ENTRY (0x48, KEY_DC1, INVISIBLE), // UP arrow
ENTRY (0x4B, KEY_DC3, INVISIBLE), // LEFT arrow
ENTRY (0x4D, KEY_DC4, INVISIBLE), // RIGHT arrow
ENTRY (0x50, KEY_DC2, INVISIBLE), // DOWN arrow
};
const uint LeftShiftScanCodes[2 * 256] =

View File

@ -125,7 +125,6 @@ void ShStartShell(void)
break;
default:
IoSetScroll(1);
IoScrollDown();