1
0
Fork 0

Changes for debugger and trapflag support

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@525
This commit is contained in:
Ulf Wohlers 2002-11-17 12:26:52 +00:00
parent 9c5c2198aa
commit b677b59c7f

View file

@ -91,13 +91,13 @@ static Bitu Normal_Loop(void) {
Bitu ret,NewTicks;
while (RemainTicks) {
ret=PIC_RunQueue();
#if C_DEBUG
if (DEBUG_ExitLoop()) return 0;
#endif
if (ret) return ret;
RemainTicks--;
TIMER_AddTick();
GFX_Events();
#if C_DEBUG
if (DEBUG_ExitLoop()) return 0;
#endif
}
NewTicks=GetTicks();
if (NewTicks>LastTicks) {