fix bogus assertion

This commit is contained in:
ehouse 2010-01-20 05:52:13 +00:00
parent 6bf9de70d5
commit 08017179c5

View file

@ -61,7 +61,7 @@ drawScoreBoard( BoardCtxt* board )
short ii;
XP_U16 nPlayers = board->gi->nPlayers;
XP_ASSERT( nPlayers < MAX_NUM_PLAYERS );
XP_ASSERT( nPlayers <= MAX_NUM_PLAYERS );
if ( nPlayers > 0 ) {
ModelCtxt* model = board->model;
XP_S16 curTurn = server_getCurrentTurn( board->server );