From fe9459b29e35e9d6d4b6ace018c44acfff2317de Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 25 Apr 2004 23:36:00 +0000 Subject: [PATCH] fix accepting input after pressing start if it comes in the same update (test case: F2, enter, enter) --- stepmania/src/ScreenSelectStyle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenSelectStyle.cpp b/stepmania/src/ScreenSelectStyle.cpp index b8c8734622..4873d24ea3 100644 --- a/stepmania/src/ScreenSelectStyle.cpp +++ b/stepmania/src/ScreenSelectStyle.cpp @@ -189,7 +189,7 @@ void ScreenSelectStyle::MenuRight( PlayerNumber pn ) void ScreenSelectStyle::MenuStart( PlayerNumber pn ) { m_soundSelect.Play(); - SCREENMAN->PostMessageToTopScreen( SM_AllDoneChoosing, 0 ); + SCREENMAN->SendMessageToTopScreen( SM_AllDoneChoosing ); const ModeChoice& mc = m_aModeChoices[GetSelectionIndex(pn)]; SOUND->PlayOnceFromDir( ANNOUNCER->GetPathTo(ssprintf("%s comment %s",m_sName.c_str(),mc.m_sName.c_str())) );