aboutsummaryrefslogtreecommitdiff
path: root/unequal.c
diff options
context:
space:
mode:
Diffstat (limited to 'unequal.c')
-rw-r--r--unequal.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/unequal.c b/unequal.c
index 4b2bc42..0adee9d 100644
--- a/unequal.c
+++ b/unequal.c
@@ -1553,7 +1553,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
if (shift_or_control) {
int nx = ui->hx, ny = ui->hy, i;
bool self;
- move_cursor(button, &nx, &ny, ds->order, ds->order, false);
+ move_cursor(button, &nx, &ny, ds->order, ds->order, false, NULL);
ui->hshow = true;
ui->hcursor = true;
@@ -1582,7 +1582,8 @@ static char *interpret_move(const game_state *state, game_ui *ui,
return dupstr(buf);
} else {
- move_cursor(button, &ui->hx, &ui->hy, ds->order, ds->order, false);
+ move_cursor(button, &ui->hx, &ui->hy, ds->order, ds->order, false,
+ NULL);
ui->hshow = true;
ui->hcursor = true;
return MOVE_UI_UPDATE;