From d5a299df4e4a56b666a1d12956406545a2d24dd4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 4 Sep 2003 07:43:58 +0000 Subject: [PATCH] Oops, silly fix. --- 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 e1b99337ea..4d253bb0a8 100644 --- a/stepmania/src/LifeMeterBar.cpp +++ b/stepmania/src/LifeMeterBar.cpp @@ -515,7 +515,7 @@ void LifeMeterBar::UpdateNonstopLifebar(const int cleared, m_fLifeDifficulty = m_fBaseLifeDifficulty - 0.2f * ProgressiveLifebarDifficulty; if (total > 1) - m_fLifeDifficulty *= cleared / (total - 1); + m_fLifeDifficulty = m_fLifeDifficulty * cleared / (total - 1); if (m_fLifeDifficulty >= 0.4) return;