From 3034bb5a4ca5a9de6225ed123bf0d68f35bfcf63 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 19 Sep 2003 20:45:27 +0000 Subject: [PATCH] Fix pump center --- stepmania/src/ScreenGameplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index 4773c1dbb4..2e9eaf4e13 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -1225,7 +1225,8 @@ void ScreenGameplay::Input( const DeviceInput& DeviceI, const InputEventType typ * triggered. Doing this is treated as failing the song, unlike BACK, since * it's always available. */ - if( MenuI.button == MENU_BUTTON_START ) + /* However, if this is also a style button, don't do this. (pump center = start) */ + if( MenuI.button == MENU_BUTTON_START && !StyleI.IsValid() ) { /* No PREFSMAN->m_bDelayedEscape; always delayed. */ if( type==IET_RELEASE )