aboutsummaryrefslogtreecommitdiff
path: root/tents.c
diff options
context:
space:
mode:
Diffstat (limited to 'tents.c')
-rw-r--r--tents.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tents.c b/tents.c
index ff4af33..607b6ab 100644
--- a/tents.c
+++ b/tents.c
@@ -1678,7 +1678,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
if (shift || control) {
int len = 0, i, indices[2];
indices[0] = ui->cx + w * ui->cy;
- move_cursor(button, &ui->cx, &ui->cy, w, h, false);
+ move_cursor(button, &ui->cx, &ui->cy, w, h, false, NULL);
indices[1] = ui->cx + w * ui->cy;
/* NONTENTify all unique traversed eligible squares */
@@ -1693,7 +1693,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
tmpbuf[len] = '\0';
if (len) return dupstr(tmpbuf);
} else
- move_cursor(button, &ui->cx, &ui->cy, w, h, false);
+ move_cursor(button, &ui->cx, &ui->cy, w, h, false, NULL);
return MOVE_UI_UPDATE;
}
if (ui->cdisp) {