mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NTVDM]
Send 0xE0 before each extended key scancode. svn path=/trunk/; revision=67551
This commit is contained in:
parent
cd87007594
commit
fc5ec1fbac
1 changed files with 1 additions and 0 deletions
|
@ -38,6 +38,7 @@ VOID KeyboardEventHandler(PKEY_EVENT_RECORD KeyEvent)
|
|||
/* Push the scan code into the PS/2 queue */
|
||||
for (i = 0; i < KeyEvent->wRepeatCount; i++)
|
||||
{
|
||||
if (KeyEvent->dwControlKeyState & ENHANCED_KEY) PS2QueuePush(PS2Port, 0xE0);
|
||||
PS2QueuePush(PS2Port, ScanCode);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue