Skip to content

Commit

Permalink
Merge pull request #16732 from unknownbrackets/debugger
Browse files Browse the repository at this point in the history
Debugger: Make sure we don't restore twice
  • Loading branch information
hrydgard committed Jan 5, 2023
2 parents 40236cd + 5b74937 commit 5b9fe28
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Core/Debugger/WebSocket/MemorySubscriber.cpp
Expand Up @@ -86,7 +86,9 @@ AutoDisabledReplacements::AutoDisabledReplacements(AutoDisabledReplacements &&ot
replacements = std::move(other.replacements);
emuhacks = std::move(emuhacks);
saved = other.saved;
other.saved = false;
wasStepping = other.wasStepping;
other.wasStepping = true;
}

AutoDisabledReplacements::~AutoDisabledReplacements() {
Expand Down

0 comments on commit 5b9fe28

Please sign in to comment.