mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
Make sure we wait some time during int16 keyboard query call.
This commit is contained in:
parent
5ab5c4991c
commit
45f5f5dabb
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,9 @@ void WINAPI DOSVM_Int16Handler( CONTEXT86 *context )
|
|||
{
|
||||
RESET_ZFLAG(context);
|
||||
}
|
||||
/* don't miss the opportunity to break some tight timing loop in DOS
|
||||
* programs causing 100% CPU usage (by doing a Sleep here) */
|
||||
Sleep(5);
|
||||
break;
|
||||
|
||||
case 0x02: /* Get Shift Flags */
|
||||
|
|
Loading…
Reference in a new issue