fix GCC compile

This commit is contained in:
Chris Danford
2006-03-28 04:02:36 +00:00
parent dfdf04e1c0
commit 5a89e2e5e7
+2 -2
View File
@@ -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;
}
}