From 2408fa0f08526b1af50e33d172e59742175c440d Mon Sep 17 00:00:00 2001 From: shygoo Date: Thu, 27 Dec 2018 15:57:18 -0600 Subject: [PATCH] [Debugger] Fix opcode editor in the commands window --- Source/Project64/UserInterface/Debugger/Debugger-Commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Project64/UserInterface/Debugger/Debugger-Commands.cpp b/Source/Project64/UserInterface/Debugger/Debugger-Commands.cpp index f6d5df47b..834e639d9 100644 --- a/Source/Project64/UserInterface/Debugger/Debugger-Commands.cpp +++ b/Source/Project64/UserInterface/Debugger/Debugger-Commands.cpp @@ -1253,7 +1253,7 @@ void CDebugCommandsView::GotoEnteredAddress() void CDebugCommandsView::BeginOpEdit(uint32_t address) { uint32_t opcode; - if (m_Debugger->DebugLW_VAddr(address, opcode)) + if (!m_Debugger->DebugLW_VAddr(address, opcode)) { return; }