mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-02-26 21:30:36 +00:00
Fix #363: Redraw screen whilst debug stepping
This commit is contained in:
parent
bcd4c7c7fa
commit
7f3cc09217
@ -8489,10 +8489,9 @@ void DebugContinueStepping ()
|
||||
|
||||
if (g_nDebugSteps)
|
||||
{
|
||||
if (!((++nStepsTaken) & 0xFFFF))
|
||||
if (!((++nStepsTaken) & 0xFFFF)) // Arbitrary: redraw screen every 0x10000 steps
|
||||
{
|
||||
if (nStepsTaken == 0x10000) // HACK_MAGIC_NUM
|
||||
VideoRedrawScreen();
|
||||
VideoRedrawScreen();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user