equivalent but more consistent

This commit is contained in:
Glenn Maynard
2006-06-15 06:35:36 +00:00
parent 1157c5eae9
commit cc2fb2b137
@@ -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 );
}