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.)
This commit is contained in:
Glenn Maynard
2003-02-17 03:55:32 +00:00
parent 9edfe16dbb
commit 3b0a29f3db
+1 -1
View File
@@ -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 );
}
}