Commit 867a8743 authored by Nog's avatar Nog Committed by Alexandre Julliard

Fixed function 0xb.

parent 5038c04e
...@@ -121,12 +121,11 @@ void WINAPI DOSVM_Int21Handler( CONTEXT86 *context ) ...@@ -121,12 +121,11 @@ void WINAPI DOSVM_Int21Handler( CONTEXT86 *context )
case 0x0b: /* GET STDIN STATUS */ case 0x0b: /* GET STDIN STATUS */
{ {
char x1,x2; BIOSDATA *data = DOSMEM_BiosData();
if(data->FirstKbdCharPtr == data->NextKbdCharPtr)
if (CONSOLE_CheckForKeystroke(&x1,&x2))
AL_reg(context) = 0xff;
else
AL_reg(context) = 0; AL_reg(context) = 0;
else
AL_reg(context) = 0xff;
} }
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment