From 1083d78721e896f55d816aab686c49735d235fd8 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 29 Jun 2013 02:55:29 -0400 Subject: [PATCH] InputConfigDiag: Put the colon after the device name Oops. The dialog accidentally generated the wrong syntax for this one. --- Source/Core/DolphinWX/Src/InputConfigDiag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/InputConfigDiag.cpp b/Source/Core/DolphinWX/Src/InputConfigDiag.cpp index 2c6f08fde0..7be5f0c55e 100644 --- a/Source/Core/DolphinWX/Src/InputConfigDiag.cpp +++ b/Source/Core/DolphinWX/Src/InputConfigDiag.cpp @@ -343,8 +343,8 @@ inline void GetExpressionForControl(wxString &expr, // non-default device if (control_device && default_device && !(*control_device == *default_device)) { - expr += ":"; expr += control_device->ToString(); + expr += ":"; } // append the control name