From 28d1dfbb3959f395c2a3838954206ea683dcc09f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 4 Jun 2004 21:56:36 +0000 Subject: [PATCH] fix select screen flickering on coin input --- stepmania/src/ScreenSelect.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenSelect.cpp b/stepmania/src/ScreenSelect.cpp index 9c7ed1dbb6..a69109d396 100644 --- a/stepmania/src/ScreenSelect.cpp +++ b/stepmania/src/ScreenSelect.cpp @@ -147,7 +147,8 @@ void ScreenSelect::Input( const DeviceInput& DeviceI, const InputEventType type, if( MenuI.button == MENU_BUTTON_COIN || Screen::JoinInput(DeviceI, type, GameI, MenuI, StyleI) ) { - this->UpdateSelectableChoices(); + if( type == IET_FIRST_PRESS ) + this->UpdateSelectableChoices(); return; // don't let the screen handle the MENU_START press }