Fix warnings

This commit is contained in:
Steve Checkoway
2004-03-11 10:58:36 +00:00
parent a5f8f3bc23
commit 02d438b33f
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -558,7 +558,7 @@ bool PlayerOptions::IsHandicapForSong( Song* pSong )
bool PlayerOptions::IsHandicapForCourse( Course* pCourse )
{
for( int i=0; i<pCourse->m_entries.size(); i++ )
for( unsigned i=0; i<pCourse->m_entries.size(); i++ )
{
const CourseEntry& ce = pCourse->m_entries[i];
if( IsHandicapForSong(ce.pSong) )