More prototype warning stuff.

I know these should be in the .h files,
but we can cover that later.
This commit is contained in:
Jason Felds
2011-06-12 19:20:43 -04:00
parent e965e0b3e4
commit c3c8753620
5 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -1328,7 +1328,7 @@ void Player::UpdateHoldNotes( int iSongRow, float fDeltaTime, vector<TrackRowTap
{
float factor = (tn.subType == TapNote::hold_head_roll ? 2 : 10.0f - 8.5f);
factor *= fLifeFraction;
m_vKeysounds[tn.iKeysoundIndex].SetProperty ("Volume", max(0.0, min(1.0, factor)));
m_vKeysounds[tn.iKeysoundIndex].SetProperty ("Volume", max(0.0f, min(1.0f, factor)));
}
}