debugger: remove commented out code

This commit is contained in:
Swift
2026-06-07 18:26:37 -05:00
parent 055a5f838f
commit 1e21fdbbac

View File

@@ -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()