Merge pull request #2466 from JosJuice/fix-gamelist-encoding
Fix game list name encoding error caused by 4.0-6419 (d7900b4
)
This commit is contained in:
commit
a26cf63783
|
@ -387,7 +387,7 @@ void CGameListCtrl::InsertItemInReportView(long _Index)
|
|||
// Set the game's banner in the second column
|
||||
SetItemColumnImage(_Index, COLUMN_BANNER, ImageIndex);
|
||||
|
||||
wxString name = rISOFile.GetName();
|
||||
wxString name = StrToWxStr(rISOFile.GetName());
|
||||
|
||||
std::ifstream titlestxt;
|
||||
OpenFStream(titlestxt, File::GetUserPath(D_LOAD_IDX) + "titles.txt", std::ios::in);
|
||||
|
|
Loading…
Reference in New Issue