From 1fd4b7f05fee896f1755a95137169dc925980065 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 17 Mar 2006 01:50:28 +0000 Subject: [PATCH] Use bFailed , not bFailedEarlier. That way, you can't get a Failed grade in FailOff (that's what FailOff means: you can't fail). This also means you won't get an F if you bottom out in TwoPlayerRecovery; that's OK. --- stepmania/src/PlayerStageStats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/PlayerStageStats.cpp b/stepmania/src/PlayerStageStats.cpp index 8b61f6a794..0c34212f35 100644 --- a/stepmania/src/PlayerStageStats.cpp +++ b/stepmania/src/PlayerStageStats.cpp @@ -137,7 +137,7 @@ Grade PlayerStageStats::GetGradeFromPercent( float fPercent ) Grade PlayerStageStats::GetGrade() const { - if( bFailedEarlier ) + if( bFailed ) return Grade_Failed; /* XXX: This entire calculation should be in ScoreKeeper, but final evaluation