Fix warnings.

This commit is contained in:
Glenn Maynard
2003-09-07 22:48:25 +00:00
parent 65e44b1f86
commit 14d12df8e0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -292,7 +292,7 @@ void MusicBannerWheel::ScanToNextGroup()
localPos++;
while(localPos != startingPos)
{
if(localPos >= arraySongs.size()-1)
if(localPos >= (int) arraySongs.size()-1)
{
localPos = 0;
}