From 0b5baba88c6af716fab5eea30f87e865da7737de Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Fri, 16 Jun 2006 06:27:53 +0000 Subject: [PATCH] fix compile --- 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 34347a9719..e5ff85f1fb 100644 --- a/stepmania/src/arch/InputHandler/InputHandler.cpp +++ b/stepmania/src/arch/InputHandler/InputHandler.cpp @@ -124,7 +124,7 @@ RString InputHandler::GetDeviceSpecificInputString( const DeviceInput &di ) { wchar_t c = DeviceButtonToChar( di.button, false ); if( c && c != L' ' ) // Don't show "Key " for space. - return InputDeviceToString(di.device) + " " + + Capitalize( WStringToRString(wstring()+c) ); + return InputDeviceToString(di.device) + " " + Capitalize( WStringToRString(wstring()+c) ); } RString s = DeviceButtonToString(di.button);