mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
fix to compile without SEARCHLIMIT set
This commit is contained in:
parent
48f4caeb7a
commit
218a0a9a1c
1 changed files with 4 additions and 1 deletions
|
@ -788,7 +788,10 @@ ceHandleHintRequest( CEAppGlobals* globals )
|
|||
XP_Bool draw;
|
||||
XP_ASSERT( !!globals->game.board );
|
||||
|
||||
draw = board_requestHint( globals->game.board, globals->askTrayLimits,
|
||||
draw = board_requestHint( globals->game.board,
|
||||
#ifdef XWFEATURE_SEARCHLIMIT
|
||||
globals->askTrayLimits,
|
||||
#endif
|
||||
¬Done );
|
||||
globals->hintPending = notDone;
|
||||
return draw;
|
||||
|
|
Loading…
Reference in a new issue