fix overlap between keyboard digits and numbered joystick buttons

This commit is contained in:
Glenn Maynard
2005-12-28 20:53:54 +00:00
parent 87dc61af3e
commit ce93d6be50
+1 -1
View File
@@ -25,7 +25,7 @@ CString DeviceButtonToString( DeviceButton key )
if( key >= JOY_BUTTON_1 && key <= JOY_BUTTON_32 )
{
return ssprintf( "%i", key-JOY_BUTTON_1+1 );
return ssprintf( "B%i", key-JOY_BUTTON_1+1 );
}
if( key >= MIDI_FIRST && key <= MIDI_LAST )