From ce93d6be50a6b429327374d20ea6b67aa9951156 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 28 Dec 2005 20:53:54 +0000 Subject: [PATCH] fix overlap between keyboard digits and numbered joystick buttons --- stepmania/src/RageInputDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageInputDevice.cpp b/stepmania/src/RageInputDevice.cpp index 16bec6dbb2..a35b581fa7 100644 --- a/stepmania/src/RageInputDevice.cpp +++ b/stepmania/src/RageInputDevice.cpp @@ -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 )