aboutsummaryrefslogtreecommitdiff
path: root/range.c
diff options
context:
space:
mode:
Diffstat (limited to 'range.c')
-rw-r--r--range.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/range.c b/range.c
index 4cb771a..bc29f76 100644
--- a/range.c
+++ b/range.c
@@ -1405,14 +1405,14 @@ static char *interpret_move(const game_state *state, game_ui *ui,
else if (do_post)
return nfmtstr(40, "W,%d,%d", ui->r, ui->c);
else
- return UI_UPDATE;
+ return MOVE_UI_UPDATE;
} else if (!out_of_bounds(ui->r + dr[i], ui->c + dc[i], w, h)) {
ui->r += dr[i];
ui->c += dc[i];
}
} else ui->cursor_show = true;
- return UI_UPDATE;
+ return MOVE_UI_UPDATE;
}
if (action == hint) {