[Debugger] Fix opcode editor in the commands window

This commit is contained in:
shygoo 2018-12-27 15:57:18 -06:00
parent eddd90bbeb
commit 2408fa0f08
1 changed files with 1 additions and 1 deletions

View File

@ -1253,7 +1253,7 @@ void CDebugCommandsView::GotoEnteredAddress()
void CDebugCommandsView::BeginOpEdit(uint32_t address) void CDebugCommandsView::BeginOpEdit(uint32_t address)
{ {
uint32_t opcode; uint32_t opcode;
if (m_Debugger->DebugLW_VAddr(address, opcode)) if (!m_Debugger->DebugLW_VAddr(address, opcode))
{ {
return; return;
} }