From 45397aaa8eea36d2e48427770d4e1750f52b2450 Mon Sep 17 00:00:00 2001 From: nakeee Date: Fri, 26 Sep 2008 14:53:46 +0000 Subject: [PATCH] wxT is better git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@715 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp b/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp index e04d967b84..bcdf1183a9 100644 --- a/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_PadSimple/Src/GUI/ConfigDlg.cpp @@ -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(wxString::FromAscii("%i"), x)); + m_DeviceName[i]->Append(wxString::Format(wxT("%i"), x)); } sDeviceTop[i]->Add(m_DeviceName[i], 1, wxEXPAND|wxALL, 1);