more cleanups (lint lint lint)
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user