Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
  • Loading branch information
CrossVR committed Jun 28, 2015
2 parents a71e81a + 2e2c984 commit 1120132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/DolphinWX/GameListCtrl.cpp
Expand Up @@ -402,7 +402,7 @@ void CGameListCtrl::InsertItemInReportView(long _Index)

if (line.substr(0,rISOFile.GetUniqueID().size()) == rISOFile.GetUniqueID())
{
name = line.substr(rISOFile.GetUniqueID().size() + 3);
name = StrToWxStr(line.substr(rISOFile.GetUniqueID().size() + 3));
break;
}
}
Expand All @@ -412,7 +412,7 @@ void CGameListCtrl::InsertItemInReportView(long _Index)
std::string title;
IniFile gameini = SConfig::LoadGameIni(rISOFile.GetUniqueID(), rISOFile.GetRevision());
if (gameini.GetIfExists("EmuState", "Title", &title))
name = title;
name = StrToWxStr(title);

int disc_number = rISOFile.GetDiscNumber() + 1;
if (disc_number > 1 && name.Lower().find(wxString::Format("disc %i", disc_number)) == std::string::npos
Expand Down

0 comments on commit 1120132

Please sign in to comment.