mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06: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