Fix warning.

This commit is contained in:
Steve Checkoway
2004-08-09 05:44:19 +00:00
parent e435165014
commit 0bf0eb3455
+1 -1
View File
@@ -150,7 +150,7 @@ float AnimatedTexture::GetSecondsIntoAnimation() const
for( unsigned i=0; i<vFrames.size(); i++ )
{
const AnimatedTextureState& ats = vFrames[i];
if( i >= m_iCurState )
if( int(i) >= m_iCurState )
break;
fSeconds += ats.fDelaySecs;