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