From 181c9d51f94cd0ff97948a804158b35028222393 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 15 Jun 2006 04:07:48 +0000 Subject: [PATCH] trying to unwrap this input stuff: DeviceInputToTranslatedString will try DeviceButtonToChar; but we just tried that; it then uses DeviceButtonToString. use DeviceButtonToString directly --- stepmania/src/arch/InputHandler/InputHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/InputHandler/InputHandler.cpp b/stepmania/src/arch/InputHandler/InputHandler.cpp index 58a9081542..1800d2b7ae 100644 --- a/stepmania/src/arch/InputHandler/InputHandler.cpp +++ b/stepmania/src/arch/InputHandler/InputHandler.cpp @@ -112,7 +112,7 @@ RString InputHandler::GetDeviceSpecificInputString( const DeviceInput &di ) else return "Key " + WStringToRString(wstring()+c); } - return DeviceInputToTranslatedString( di ); + return DeviceButtonToString( di.button ); } return di.ToString();