diff --git a/src/RageInputDevice.cpp b/src/RageInputDevice.cpp index 9421dc17b0..354baa5110 100644 --- a/src/RageInputDevice.cpp +++ b/src/RageInputDevice.cpp @@ -155,9 +155,6 @@ RString DeviceButtonToString( DeviceButton key ) if( key >= MIDI_FIRST && key <= MIDI_LAST ) return ssprintf( "Midi %d", key-MIDI_FIRST ); - if( key >= MOUSE_LEFT && key <= MOUSE_WHEELDOWN ) - return ssprintf( "Mouse %d", key-MOUSE_LEFT ); - map::const_iterator it = g_mapNamesToString.find( key ); if( it != g_mapNamesToString.end() ) return it->second;