fix android compile errors

This commit is contained in:
Eric House 2013-12-27 19:32:56 -08:00
parent ebdf5ed492
commit b2b4c2a1f5

View file

@ -447,8 +447,8 @@ gi_copy( MPFORMAL CurGameInfo* destGI, const CurGameInfo* srcGI )
void
gi_setNPlayers( CurGameInfo* gi, XP_U16 nTotal, XP_U16 nHere )
{
assert( nTotal < MAX_NUM_PLAYERS );
assert( nHere < nTotal );
XP_ASSERT( nTotal < MAX_NUM_PLAYERS );
XP_ASSERT( nHere < nTotal );
gi->nPlayers = nTotal;