From 08a1a67831c0a50e0daa23793dca6c6d52f6badc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 16 Feb 2004 07:25:25 +0000 Subject: [PATCH] fix going from evaluation back to select course screen in event mode --- stepmania/src/ScreenEvaluation.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEvaluation.cpp b/stepmania/src/ScreenEvaluation.cpp index f4eeb1fac8..6e17529b1f 100644 --- a/stepmania/src/ScreenEvaluation.cpp +++ b/stepmania/src/ScreenEvaluation.cpp @@ -1381,7 +1381,10 @@ void ScreenEvaluation::EndScreen() if( PREFSMAN->m_bEventMode ) { - m_Menu.StartTransitioning( SM_GoToNextScreen ); + if( GAMESTATE->IsCourseMode() ) + m_Menu.StartTransitioning( SM_GoToSelectCourse ); + else + m_Menu.StartTransitioning( SM_GoToNextScreen ); } else // not event mode {