GE Debugger: Allow GPU stepping while CPU stepping.

This can happen if you step into an update stall address call or similar.
This commit is contained in:
Unknown W. Brackets 2022-01-23 23:06:33 -08:00
parent 511c822312
commit e47ee79899

View file

@ -159,7 +159,7 @@ bool SingleStep() {
bool EnterStepping() {
std::unique_lock<std::mutex> 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();