diff options
Diffstat (limited to 'palisade.c')
| -rw-r--r-- | palisade.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } } |