mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
fix bogus assertion
This commit is contained in:
parent
6bf9de70d5
commit
08017179c5
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
|
|
Loading…
Add table
Reference in a new issue