summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp
diff options
context:
space:
mode:
authorTryTwo <taolas@gmail.com>2022-09-02 02:57:30 -0700
committerTryTwo <taolas@gmail.com>2022-12-04 11:25:33 -0700
commita17fbe7c6566682ef88119875b9ce0f719ebf257 (patch)
tree5c9c9945e06c3667cbd892d52e77448b1a0fa3a0 /Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp
parent6abcaadd5a46dba26973cc7bcad040b9e343c43d (diff)
Expand conditional breakpoints to memory breakpoints
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp
index e83e77eb1b..1b544e3f48 100644
--- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp
@@ -797,7 +797,7 @@ void MemoryViewWidget::ToggleBreakpoint(u32 addr, bool row)
check.log_on_hit = m_do_log;
check.break_on_hit = true;
- PowerPC::memchecks.Add(check);
+ PowerPC::memchecks.Add(std::move(check));
}
else if (check_ptr != nullptr)
{