From 0e13044f26bc951e8c29d82c00a1eb7c660ee6a2 Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Tue, 30 Sep 2014 15:07:42 +0000 Subject: [PATCH 1/1] [NTVDM] The AX register value can't fit in a BYTE. svn path=/trunk/; revision=64409 --- reactos/subsystems/ntvdm/bios/bios32/kbdbios32.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/subsystems/ntvdm/bios/bios32/kbdbios32.c b/reactos/subsystems/ntvdm/bios/bios32/kbdbios32.c index 0782f3e719f..7ef9a8b2502 100644 --- a/reactos/subsystems/ntvdm/bios/bios32/kbdbios32.c +++ b/reactos/subsystems/ntvdm/bios/bios32/kbdbios32.c @@ -205,7 +205,8 @@ static VOID WINAPI BiosKeyboardIrq(LPWORD Stack) * In return, if CF is set we continue processing the scan code * stored in AL, and if not, we skip it. */ - BYTE CF, AX; + BYTE CF; + WORD AX; CF = getCF(); AX = getAX(); -- 2.17.1