From e47ee798992f7ab20cf1e82704507dd62d7747de Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 23 Jan 2022 23:06:33 -0800 Subject: [PATCH] GE Debugger: Allow GPU stepping while CPU stepping. This can happen if you step into an update stall address call or similar. --- GPU/Debugger/Stepping.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/Debugger/Stepping.cpp b/GPU/Debugger/Stepping.cpp index 99267b38f5..ea3ce03715 100644 --- a/GPU/Debugger/Stepping.cpp +++ b/GPU/Debugger/Stepping.cpp @@ -159,7 +159,7 @@ bool SingleStep() { bool EnterStepping() { std::unique_lock guard(pauseLock); - if (coreState != CORE_RUNNING && coreState != CORE_NEXTFRAME) { + if (coreState != CORE_RUNNING && coreState != CORE_NEXTFRAME && coreState != CORE_STEPPING) { // Shutting down, don't try to step. actionComplete = true; actionWait.notify_all();