fix warnings

This commit is contained in:
Glenn Maynard
2004-09-28 02:14:56 +00:00
parent 4650e0cc0c
commit c8ba0bec7b
2 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -115,9 +115,9 @@ static StepsType DetermineStepsType( int iPlayer, const NoteData &nd )
bool bTrackHasNote[NUM_BMS_TRACKS];
ZERO( bTrackHasNote );
for( unsigned t=0; t<nd.GetNumTracks(); t++ )
for( int t=0; t<nd.GetNumTracks(); t++ )
{
for( unsigned r=0; r<nd.GetNumRows(); r++ )
for( int r=0; r<nd.GetNumRows(); r++ )
{
if( nd.GetTapNoteX(t, r).type != TapNote::empty )
{