mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +00:00
DebugInterface: Make GetRawMemoryString return a std::string
This commit is contained in:
parent
3245ca236a
commit
ee71d70738
6 changed files with 30 additions and 44 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue