If we pressed a key, we need to set the strobe to true

This commit is contained in:
Peter Evans 2018-04-13 16:14:57 -05:00
parent ee2c9746c6
commit 20047c65a8
1 changed files with 4 additions and 0 deletions

View File

@ -348,6 +348,10 @@ apple2_run_loop(apple2 *mach)
i = 0;
}
if (vm_screen_last_key(mach->screen)) {
mach->strobe = true;
}
if (apple2_debug_broke(mach->cpu->PC)) {
mach->paused = true;
}