mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 18:50:30 +00:00
MemoryView: Fix empty string
This commit is contained in:
parent
a2cba6d72f
commit
f9b4901825
1 changed files with 2 additions and 1 deletions
|
@ -161,7 +161,8 @@ wxString CMemoryView::ReadMemoryAsString(u32 address) const
|
|||
}
|
||||
}
|
||||
|
||||
return StrToWxStr(str);
|
||||
// Not a UTF-8 string
|
||||
return wxString(str.c_str(), wxCSConv(wxFONTENCODING_CP1252), str.size());
|
||||
}
|
||||
|
||||
void CMemoryView::OnMouseDownL(wxMouseEvent& event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue