The DOS CON driver shouldn't return DOS_DEVSTAT_BUSY while an extended
character can be read.


svn path=/trunk/; revision=67578
This commit is contained in:
Aleksandar Andrejevic 2015-05-06 20:09:38 +00:00
parent 5f9be9e447
commit df3b279994

View file

@ -92,7 +92,7 @@ WORD NTAPI ConDrvInputStatus(PDOS_DEVICE_NODE Device)
setAX(AX);
/* If ZF is set, set the busy bit */
if (getZF()) return DOS_DEVSTAT_BUSY;
if (getZF() && !ExtendedCode) return DOS_DEVSTAT_BUSY;
else return DOS_DEVSTAT_DONE;
}