fix VC7 warning

This commit is contained in:
Chris Danford
2005-04-04 08:56:05 +00:00
parent 446c8cb5ae
commit 361f17db1a
+1 -1
View File
@@ -851,7 +851,7 @@ void ScreenOptions::MenuStart( PlayerNumber pn, const InputEventType type )
{
case NAV_THREE_KEY:
// don't wrap
if( iCurRow == m_Rows.size()-1 )
if( iCurRow == (int)m_Rows.size()-1 )
return;
MenuDown( pn, type );
break;