clean up some sign mismatches

This commit is contained in:
Glenn Maynard
2002-10-31 03:25:35 +00:00
parent 7e9905995d
commit 32bf482480
10 changed files with 22 additions and 25 deletions
+1 -3
View File
@@ -54,14 +54,12 @@ bool SMLoader::LoadFromSMFile( CString sPath, Song &out )
out.m_BPMSegments.clear();
out.m_StopSegments.clear();
int i;
MsdFile msd;
bool bResult = msd.ReadFile( sPath );
if( !bResult )
throw RageException( "Error opening file '%s'.", sPath.GetString() );
for( i=0; i<msd.m_iNumValues; i++ )
for( unsigned i=0; i<msd.m_iNumValues; i++ )
{
int iNumParams = msd.m_iNumParams[i];
CString* sParams = msd.m_sParams[i];