Fix warning.

This commit is contained in:
Steve Checkoway
2004-05-16 08:11:41 +00:00
parent 7e72d8d532
commit 43ef336eea
+1 -1
View File
@@ -44,7 +44,7 @@ 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++ )
for( unsigned i=0; i<ARRAYSIZE(m_DestValues); i++ )
CLAMP( m_DestValues[i], 0.f, 1.f );
UpdateVerts();
}