From 28c0816cd47ebe467b67a8669b9afaebacc1c435 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Nov 2006 09:48:51 +0000 Subject: [PATCH] simplify --- stepmania/src/LifeMeterBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/LifeMeterBar.cpp b/stepmania/src/LifeMeterBar.cpp index 31a5a45305..b567176eb7 100644 --- a/stepmania/src/LifeMeterBar.cpp +++ b/stepmania/src/LifeMeterBar.cpp @@ -241,7 +241,7 @@ void LifeMeterBar::ChangeLife( float fDeltaLife ) /* If we've already failed, there's no point in letting them fill up the bar again. */ if( m_pPlayerStageStats->bFailed ) - fDeltaLife = 0; + return; switch( GAMESTATE->m_SongOptions.GetSong().m_DrainType ) {