X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/5b502ae807b1e98a91644f179863484c61aedb4c..8b5625f56baa192a745a6c43755f65ec92294d65:/net.c 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;