fix warning

This commit is contained in:
Glenn Maynard
2003-02-17 20:35:20 +00:00
parent b6039f4fb5
commit 2996f296b9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -316,7 +316,7 @@ bool ScreenSelectDifficulty::IsOnPage2( int iItemIndex )
{
ASSERT( iItemIndex >= 0 && iItemIndex < NUM_CHOICES );
return iItemIndex >= unsigned(NUM_CHOICES_ON_PAGE_1);
return iItemIndex >= NUM_CHOICES_ON_PAGE_1;
}
bool ScreenSelectDifficulty::SelectedSomethingOnPage2()