Skip to content

Commit

Permalink
Fix interaction with the crash screen, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Dec 10, 2024
1 parent 419c329 commit 961dce8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Windows/EmuThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,13 @@ static bool Run(GraphicsContext *ctx) {
NativeFrame(ctx);
return true;

case CORE_RUNTIME_ERROR:
// Need to step the loop.
NativeFrame(ctx);
break;

case CORE_POWERUP:
case CORE_BOOT_ERROR:
case CORE_RUNTIME_ERROR:
// Exit loop!!
return true;

Expand Down

0 comments on commit 961dce8

Please sign in to comment.