more cleanups (lint lint lint)

This commit is contained in:
Glenn Maynard
2002-11-16 09:12:55 +00:00
parent 551f5adb16
commit 23254cdd4a
16 changed files with 46 additions and 41 deletions
+3 -2
View File
@@ -216,7 +216,8 @@ void NoteField::DrawPrimitives()
/////////////////////////////////
// Draw all HoldNotes in this column (so that they appear under the tap notes)
/////////////////////////////////
for( int i=0; i < GetNumHoldNotes(); i++ )
int i;
for( i=0; i < GetNumHoldNotes(); i++ )
{
const HoldNote &hn = GetHoldNote(i);
HoldNoteScore &hns = m_HoldNoteScores[i];
@@ -281,4 +282,4 @@ void NoteField::FadeToFail()
{
m_fPercentFadeToFail = max( 0.0f, m_fPercentFadeToFail ); // this will slowly increase every Update()
// don't fade all over again if this is called twice
}
}