From 3b0a29f3dbd91febc01bca3660e762a9e08eedab Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 17 Feb 2003 03:55:32 +0000 Subject: [PATCH] Going from "x5" to having three battery bars is confusing; subtract one. (This is also a little odd: you select 5 lives and it says x4. It does make sense: if you ask for 5 lives total, then you start the game on your first life and have 4 remaining.) --- stepmania/src/LifeMeterBattery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/LifeMeterBattery.cpp b/stepmania/src/LifeMeterBattery.cpp index 5b52141b1c..0a14c7ef4a 100644 --- a/stepmania/src/LifeMeterBattery.cpp +++ b/stepmania/src/LifeMeterBattery.cpp @@ -192,7 +192,7 @@ void LifeMeterBattery::Refresh() } else { - m_textNumLives.SetText( ssprintf("x%d", m_iLivesLeft) ); + m_textNumLives.SetText( ssprintf("x%d", m_iLivesLeft-1) ); m_sprBattery.SetState( 3 ); } }