From cc2fb2b13775f71dca4fe3d7ca1caf7d326071e8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 15 Jun 2006 06:35:36 +0000 Subject: [PATCH] equivalent but more consistent --- 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 16c3711a36..b071bb464a 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 "Key " + Capitalize( WStringToRString(wstring()+c) ); + return InputDeviceToString(di.device) + " " + + Capitalize( WStringToRString(wstring()+c) ); return DeviceButtonToString( di.button ); }