aboutsummaryrefslogtreecommitdiff
path: root/palisade.c
diff options
context:
space:
mode:
Diffstat (limited to 'palisade.c')
-rw-r--r--palisade.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/palisade.c b/palisade.c
index 83b5983..028633b 100644
--- a/palisade.c
+++ b/palisade.c
@@ -969,7 +969,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
int dir, i = ui->y * w + ui->x;
x = ui->x;
y = ui->y;
- move_cursor(button, &x, &y, w, h, false);
+ move_cursor(button, &x, &y, w, h, false, NULL);
if (OUT_OF_BOUNDS(x, y, w, h)) return NULL;
for (dir = 0; dir < 4; ++dir)
@@ -989,7 +989,7 @@ static char *interpret_move(const game_state *state, game_ui *ui,
return string(80, "F%d,%d,%dF%d,%d,%d",
ui->x, ui->y, flag, x, y, newflag);
} else {
- move_cursor(button, &ui->x, &ui->y, w, h, false);
+ move_cursor(button, &ui->x, &ui->y, w, h, false, NULL);
return MOVE_UI_UPDATE;
}
}