From: Aleksandar Andrejevic Date: Tue, 30 Sep 2014 15:07:42 +0000 (+0000) Subject: [NTVDM] X-Git-Tag: backups/0.3.17@66124~339 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=0e13044f26bc951e8c29d82c00a1eb7c660ee6a2 [NTVDM] The AX register value can't fit in a BYTE. svn path=/trunk/; revision=64409 --- 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();