- 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:
parent
034d282ce0
commit
723c115813
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue