[LifeMeterBar] Reverted a change from 2010 that messed with how the life meter subtracts life. The life difficulty should match StepMania 3.9 again.
This commit is contained in:
@@ -9,6 +9,11 @@ ________________________________________________________________________________
|
||||
StepMania 5.0 alpha 2 | 201204??
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
2012/04/22
|
||||
----------
|
||||
* [LifeMeterBar] Reverted a change from 2010 that messed with how the life meter
|
||||
subtracts life. The life difficulty should match StepMania 3.9 again. [AJ]
|
||||
|
||||
2012/04/08
|
||||
----------
|
||||
* [ScreenNetworkOptions] Fixed a bug where localized text would not show up
|
||||
|
||||
@@ -191,7 +191,7 @@ void LifeMeterBar::ChangeLife( float fDeltaLife )
|
||||
{
|
||||
bool bUseMercifulDrain = m_bMercifulBeginnerInEffect || PREFSMAN->m_bMercifulDrain;
|
||||
if( bUseMercifulDrain && fDeltaLife < 0 )
|
||||
fDeltaLife *= 0.4f;
|
||||
fDeltaLife *= SCALE( m_fLifePercentage, 0.f, 1.f, 0.5f, 1.f);
|
||||
|
||||
// handle progressiveness and ComboToRegainLife here
|
||||
if( fDeltaLife >= 0 )
|
||||
|
||||
Reference in New Issue
Block a user