diff --git a/src/gui/wxgui/debugger/BreakpointWindow.cpp b/src/gui/wxgui/debugger/BreakpointWindow.cpp index 64e82c59..9e569a4e 100644 --- a/src/gui/wxgui/debugger/BreakpointWindow.cpp +++ b/src/gui/wxgui/debugger/BreakpointWindow.cpp @@ -155,7 +155,6 @@ void BreakpointWindow::OnBreakpointToggled(wxListEvent& event) DebuggerBreakpoint* bp = (DebuggerBreakpoint*)m_breakpoints->GetItemData(index); const uint32 address = std::stoul(line.ToStdString(), nullptr, 16); debugger_toggleBreakpoint(address, state, bp); - m_breakpoints->CheckItem(index, state); } }