Skip to content

Commit

Permalink
Merge pull request #2466 from JosJuice/fix-gamelist-encoding
Browse files Browse the repository at this point in the history
Fix game list name encoding error caused by 4.0-6419 (d7900b4)
  • Loading branch information
lioncash committed May 27, 2015
2 parents 255a8df + f1580a4 commit a26cf63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/GameListCtrl.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit a26cf63

Please sign in to comment.