Fixed weird compilation error

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@714 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-09-26 14:45:22 +00:00
parent fcbe45ebdd
commit 4b2c6bb7e5
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ void ConfigDialog::CreateGUIControls()
m_DeviceName[i]->SetSelection(pad[i].XPad);
for(int x = 0; x < 5; x++)
{
m_DeviceName[i]->Append(wxString::Format("%i", x));
m_DeviceName[i]->Append(wxString::Format(wxString::FromAscii("%i"), x));
}
sDeviceTop[i]->Add(m_DeviceName[i], 1, wxEXPAND|wxALL, 1);