MemoryView: Fix empty string
This commit is contained in:
parent
a2cba6d72f
commit
f9b4901825
|
@ -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)
|
void CMemoryView::OnMouseDownL(wxMouseEvent& event)
|
||||||
|
|
Loading…
Reference in New Issue