mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-12 08:47:50 +01:00
fix android compile errors
This commit is contained in:
parent
ebdf5ed492
commit
b2b4c2a1f5
1 changed files with 2 additions and 2 deletions
|
@ -447,8 +447,8 @@ gi_copy( MPFORMAL CurGameInfo* destGI, const CurGameInfo* srcGI )
|
||||||
void
|
void
|
||||||
gi_setNPlayers( CurGameInfo* gi, XP_U16 nTotal, XP_U16 nHere )
|
gi_setNPlayers( CurGameInfo* gi, XP_U16 nTotal, XP_U16 nHere )
|
||||||
{
|
{
|
||||||
assert( nTotal < MAX_NUM_PLAYERS );
|
XP_ASSERT( nTotal < MAX_NUM_PLAYERS );
|
||||||
assert( nHere < nTotal );
|
XP_ASSERT( nHere < nTotal );
|
||||||
|
|
||||||
gi->nPlayers = nTotal;
|
gi->nPlayers = nTotal;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue