mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-08-28 04:54:01 -05:00
debugger: remove commented out code
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user