mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
let me look at another player's tiles, regardless of pref setting,
when game is over
This commit is contained in:
parent
3024bcbd50
commit
2163d25a27
1 changed files with 2 additions and 1 deletions
|
@ -421,7 +421,8 @@ handlePenUpScore( BoardCtxt* board, XP_U16 xx, XP_U16 yy )
|
||||||
if ( rectNum == CURSOR_LOC_REM ) {
|
if ( rectNum == CURSOR_LOC_REM ) {
|
||||||
util_remSelected( board->util );
|
util_remSelected( board->util );
|
||||||
} else if ( --rectNum >= 0 ) {
|
} else if ( --rectNum >= 0 ) {
|
||||||
board_selectPlayer( board, rectNum, board->allowPeek );
|
XP_Bool canSwitch = board->gameOver || board->allowPeek;
|
||||||
|
board_selectPlayer( board, rectNum, canSwitch );
|
||||||
} else {
|
} else {
|
||||||
result = XP_FALSE;
|
result = XP_FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue