fix joystick number not shown on input mapping screen

This commit is contained in:
Chris Danford
2006-08-08 08:46:40 +00:00
parent 87e4f8b49f
commit 790ccdbcbe
@@ -129,7 +129,7 @@ RString InputHandler::GetDeviceSpecificInputString( const DeviceInput &di )
RString s = DeviceButtonToString(di.button);
if( di.device != DEVICE_KEYBOARD )
InputDeviceToString(di.device) + " " + s;
s = InputDeviceToString(di.device) + " " + s;
return s;
}