aboutsummaryrefslogtreecommitdiff
path: root/net.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2008-11-16 15:37:58 +0000
committerSimon Tatham <anakin@pobox.com>2008-11-16 15:37:58 +0000
commit466aa6e532f6956e8398d21ed7b5f6a4b22fcac4 (patch)
treee5385b711fed57c3e5a439eb4507c4bda112e745 /net.c
parentce237a73ee2c4a4e0d79f6719f756a6debc4caf0 (diff)
downloadpuzzles-466aa6e532f6956e8398d21ed7b5f6a4b22fcac4.zip
puzzles-466aa6e532f6956e8398d21ed7b5f6a4b22fcac4.tar.gz
puzzles-466aa6e532f6956e8398d21ed7b5f6a4b22fcac4.tar.bz2
puzzles-466aa6e532f6956e8398d21ed7b5f6a4b22fcac4.tar.xz
Patches from Lee Dowling to make Light Up and Net use the
CURSOR_SELECT2 button (to, respectively, toggle a "definitely not light" dot and to rotate in the opposite direction from CURSOR_SELECT). [originally from svn r8299]
Diffstat (limited to 'net.c')
-rw-r--r--net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net.c b/net.c
index 1177f80..4fc5268 100644
--- a/net.c
+++ b/net.c
@@ -2077,14 +2077,14 @@ static char *interpret_move(game_state *state, game_ui *ui,
} else if (button == 'a' || button == 's' || button == 'd' ||
button == 'A' || button == 'S' || button == 'D' ||
button == 'f' || button == 'F' ||
- button == CURSOR_SELECT) {
+ button == CURSOR_SELECT || button == CURSOR_SELECT2) {
tx = ui->cur_x;
ty = ui->cur_y;
if (button == 'a' || button == 'A' || button == CURSOR_SELECT)
action = ROTATE_LEFT;
else if (button == 's' || button == 'S')
action = TOGGLE_LOCK;
- else if (button == 'd' || button == 'D')
+ else if (button == 'd' || button == 'D' || button == CURSOR_SELECT2)
action = ROTATE_RIGHT;
else if (button == 'f' || button == 'F')
action = ROTATE_180;