mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[NTVDM]: Errm... fix the "fix": apps *must* always set AX (not AL) to a correct value before calling INT 33h. The app that wrongly set AX did it once... ^^
svn path=/trunk/; revision=65375
This commit is contained in:
@@ -176,7 +176,7 @@ static VOID CallMouseUserHandlers(USHORT CallMask)
|
||||
|
||||
static VOID WINAPI DosMouseService(LPWORD Stack)
|
||||
{
|
||||
switch (getAL())
|
||||
switch (getAX())
|
||||
{
|
||||
/* Reset Driver */
|
||||
case 0x00:
|
||||
@@ -601,7 +601,7 @@ static VOID WINAPI DosMouseService(LPWORD Stack)
|
||||
|
||||
default:
|
||||
{
|
||||
DPRINT1("BIOS Function INT 33h, AL = 0x%02X NOT IMPLEMENTED\n", getAL());
|
||||
DPRINT1("BIOS Function INT 33h, AX = 0x%04X NOT IMPLEMENTED\n", getAX());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user