mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-21 20:00:32 -05:00
DebugInterface: Make GetRawMemoryString return a std::string
This commit is contained in:
@@ -332,8 +332,7 @@ void CMemoryView::OnPaint(wxPaintEvent& event)
|
||||
|
||||
if (!IsHexMode())
|
||||
{
|
||||
char mem[256];
|
||||
debugger->GetRawMemoryString(memory, address, mem, 256);
|
||||
const std::string mem = debugger->GetRawMemoryString(memory, address);
|
||||
dc.SetTextForeground(navy_color);
|
||||
draw_text(StrToWxStr(mem), 2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user