Debugger: Correctly repaint AppleII screen when showing it from debugger. (Fixed #746)

This commit is contained in:
tomcw
2020-01-02 20:49:07 +00:00
parent ce1a549bea
commit 8ec8fa6c5b
2 changed files with 15 additions and 9 deletions
+8
View File
@@ -9642,6 +9642,14 @@ void DebugDisplay( BOOL bInitDisasm/*=FALSE*/ )
if (bInitDisasm)
InitDisasm();
if (DebugVideoMode::Instance().IsSet())
{
uint32_t mode = 0;
DebugVideoMode::Instance().Get(&mode);
VideoRefreshScreen(mode, true);
return;
}
UpdateDisplay( UPDATE_ALL );
}