- Attempt to fix a little problem displaying games within Profile Selection in Video Properties

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7398 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
gnick79 2011-03-22 19:57:39 +00:00
parent 034d282ce0
commit 723c115813
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ VideoConfigDiag::VideoConfigDiag(wxWindow* parent, const std::string &title, con
{
const GameListItem* item = GameListCtrl->GetISO(GameListCtrl->GetItemData(index));
if (!item) continue;
profile_cb->AppendString(wxString(item->GetName(0).c_str(), wxConvUTF8));
profile_cb->AppendString(wxString::FromAscii(item->GetName(0).c_str()));
}
profile_cb->Select(cur_profile);