diff --git a/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp b/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp index 166c73a88b..ccff653d39 100644 --- a/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp +++ b/stepmania/src/arch/InputHandler/InputHandler_DirectInput.cpp @@ -668,11 +668,11 @@ wchar_t InputHandler_DInput::DeviceButtonToChar( DeviceButton button, bool bUseC // ToAsciiEx maps these keys to a character. They shouldn't be mapped to any character. switch( button ) { - case KEY_ESC: - case KEY_TAB: - case KEY_ENTER: - case KEY_BACK: - return '\0'; + case KEY_ESC: + case KEY_TAB: + case KEY_ENTER: + case KEY_BACK: + return '\0'; } FOREACH_CONST( DIDevice, Devices, d )