From 1e21fdbbacc67d8ee552e9628702070dc341450f Mon Sep 17 00:00:00 2001 From: Swift Date: Sun, 7 Jun 2026 18:26:37 -0500 Subject: [PATCH] debugger: remove commented out code --- src/gui/wxgui/debugger/DumpCtrl.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/gui/wxgui/debugger/DumpCtrl.cpp b/src/gui/wxgui/debugger/DumpCtrl.cpp index 65dcb39d..7e2d369c 100644 --- a/src/gui/wxgui/debugger/DumpCtrl.cpp +++ b/src/gui/wxgui/debugger/DumpCtrl.cpp @@ -197,16 +197,6 @@ void DumpCtrl::OnMouseDClick(const wxPoint& position, uint32 line) wxRect updateRect(0, line * m_line_height, GetSize().x, m_line_height); RefreshControl(&updateRect); } - // const uint8 value = memory_readU8(address); - - // wxTextEntryDialog set_value_dialog(this, _("Enter a new value."), wxString::Format(_("Set byte at address %08x"), address), wxString::Format("%02x", value)); - // if (set_value_dialog.ShowModal() == wxID_OK) - // { - // const uint8 new_value = std::stoul(set_value_dialog.GetValue().ToStdString(), nullptr, 16); - // memory_writeU8(address, new_value); - // wxRect update_rect(0, line * m_line_height, GetSize().x, m_line_height); - // RefreshControl(&update_rect); - // } } void DumpCtrl::GoToAddressDialog()