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 4dd39b9..8017f8d 100644
--- a/range.c
+++ b/range.c
@@ -1360,14 +1360,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 "";
+ return 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 "";
+ return UI_UPDATE;
}
if (action == hint) {