summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJohn Peterson <jpeterson57@gmail.com>2009-02-10 18:36:37 +0000
committerJohn Peterson <jpeterson57@gmail.com>2009-02-10 18:36:37 +0000
commit88d41e3ff4e54435b71753eb85aa780c6e09c1f8 (patch)
tree20e79d8642eaab1044af17a68fb46c4b54704f9b /Source
parent5be14f1b72d978ccb0bdba92089bb2daacd7c01c (diff)
Wiimote: Non-windows compilation fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2209 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp2
1 files changed, 1 insertions, 1 deletions
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."));