don't clamp super meter

This commit is contained in:
Chris Danford
2004-05-16 05:06:58 +00:00
parent c53b2100e8
commit a8882ff9d0
2 changed files with 8 additions and 4 deletions
+2
View File
@@ -44,6 +44,8 @@ void GraphDisplay::LoadFromStageStats( const StageStats &s, PlayerNumber pn )
memcpy( m_LastValues, m_CurValues, sizeof(m_CurValues) );
m_Position = 0;
s.GetLifeRecord( pn, m_DestValues, VALUE_RESOLUTION );
for( int i=0; i<ARRAYSIZE(m_DestValues); i++ )
CLAMP( m_DestValues[i], 0.f, 1.f );
UpdateVerts();
}