diff --git a/stepmania/src/ScreenRanking.cpp b/stepmania/src/ScreenRanking.cpp index 92fd2b9731..b198470f01 100644 --- a/stepmania/src/ScreenRanking.cpp +++ b/stepmania/src/ScreenRanking.cpp @@ -233,7 +233,7 @@ void ScoreScroller::SetStepsType( StepsType st, RageColor color ) bool ScoreScroller::Scroll( int iDir ) { - if( m_vScoreRowItemData.size() <= m_metricSongScoreRowsToDraw ) + if( (int)m_vScoreRowItemData.size() <= m_metricSongScoreRowsToDraw ) return false; float fDest = GetDestinationItem(); @@ -249,7 +249,7 @@ bool ScoreScroller::Scroll( int iDir ) } else { - return false(); + return false; } }