From 88d41e3ff4e54435b71753eb85aa780c6e09c1f8 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Tue, 10 Feb 2009 18:36:37 +0000 Subject: [PATCH] Wiimote: Non-windows compilation fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2209 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp b/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp index a7ca94f237..02faed42b1 100644 --- a/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp @@ -525,7 +525,7 @@ void ConfigDialog::CreateGUIControls() //Set values m_TiltComboInput[i]->SetSelection(g_Config.Trigger.Type); - m_TiltComboRange[i]->SetValue(wxString::Format("%i", g_Config.Trigger.Range)); + m_TiltComboRange[i]->SetValue(wxString::Format(wxT("%i"), g_Config.Trigger.Range)); // Tooltips m_TiltComboInput[i]->SetToolTip(wxT("Control tilting by an analog gamepad stick, an analog trigger or the keyboard."));