mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTVDM]
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:
parent
5f9be9e447
commit
df3b279994
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue