From 8492bc7c7a36ff8900fc6de09b4db78d6e28c9c5 Mon Sep 17 00:00:00 2001 From: ehouse Date: Sun, 2 Nov 2008 03:43:33 +0000 Subject: [PATCH] Don't skip over occupied tiles when moving cursor unless alt key is down. Smartphone doesn't have an alt key, and this simplier-to-understand behavior should be the default. --- common/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/board.c b/common/board.c index 5b5a154d5..2a8c31702 100644 --- a/common/board.c +++ b/common/board.c @@ -2628,7 +2628,7 @@ board_moveCursor( BoardCtxt* board, XP_Key cursorKey, XP_Bool preflightOnly, XP_Bool altSet; cursorKey = stripAlt( cursorKey, &altSet ); - changed = figureNextLoc( board, cursorKey, XP_FALSE, altSet, + changed = figureNextLoc( board, cursorKey, XP_FALSE, !altSet, &col, &row, up ); if ( changed && !preflightOnly ) { invalCell( board, loc.col, loc.row );