From 648e3b2100f268be7188ad4354190ddb4060e53a Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 1 Jan 2015 13:11:45 +0200 Subject: [PATCH] Ignore keyboard reset warning if CPU is halted. --- cia.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cia.cpp b/cia.cpp index 39d347bc..80332739 100644 --- a/cia.cpp +++ b/cia.cpp @@ -637,7 +637,7 @@ static void sendrw (void) int resetwarning_do (int canreset) { - if (resetwarning_phase) { + if (resetwarning_phase || regs.halted > 0) { /* just force reset if second reset happens during resetwarning */ if (canreset) { resetwarning_phase = 0; -- 2.47.3