mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
fix to compile without SEARCHLIMIT set
This commit is contained in:
parent
6a569d5632
commit
f9149e03b1
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…
Add table
Reference in a new issue