diff --git a/stepmania/src/CourseContentsList.cpp b/stepmania/src/CourseContentsList.cpp index 682c39d203..ef0746093b 100644 --- a/stepmania/src/CourseContentsList.cpp +++ b/stepmania/src/CourseContentsList.cpp @@ -81,7 +81,7 @@ void CourseContentsList::SetFromGameState() Trail* pTrail = GAMESTATE->m_pCurTrail[pn]; if( pTrail == NULL ) continue; // skip - if( i < pTrail->m_vEntries.size() ) + if( unsigned(i) < pTrail->m_vEntries.size() ) pte[pn] = &pTrail->m_vEntries[i]; } display.LoadFromTrailEntry( m_iNumContents+1, pte );