Merge pull request #5293 from sepalani/mem-ascii

MemoryView: Fix empty string
This commit is contained in:
shuffle2 2017-06-05 20:20:24 -07:00 committed by GitHub
commit 2f73bc1735

View file

@ -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)