Debugger: Fix a dumb typo.

This commit is contained in:
Unknown W. Brackets 2023-01-18 21:42:36 -08:00
parent 6af6ccc1cf
commit 265a3cf7a0

View file

@ -84,7 +84,7 @@ AutoDisabledReplacements::AutoDisabledReplacements(AutoDisabledReplacements &&ot
lock = other.lock;
other.lock = nullptr;
replacements = std::move(other.replacements);
emuhacks = std::move(emuhacks);
emuhacks = std::move(other.emuhacks);
saved = other.saved;
other.saved = false;
wasStepping = other.wasStepping;