From f0d0734817ef9611efeac7b27863c5f29f674006 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 22 Jan 2004 02:37:48 +0000 Subject: [PATCH] simplify --- stepmania/src/ScreenEvaluation.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stepmania/src/ScreenEvaluation.cpp b/stepmania/src/ScreenEvaluation.cpp index 4edb74391b..8056869b23 100644 --- a/stepmania/src/ScreenEvaluation.cpp +++ b/stepmania/src/ScreenEvaluation.cpp @@ -207,11 +207,10 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName) best_grade = min( best_grade, grade[p] ); // if its extra stage, update # passed stages - if (PREFSMAN->m_bUseUnlockSystem && - (GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() ) && + if ( (GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() ) && grade[p] > GRADE_FAILED && m_Type != summary) - UNLOCKSYS->UnlockClearExtraStage(); + UNLOCKSYS->UnlockClearExtraStage(); }