1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-11 05:29:33 +00:00

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

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;
}