X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/ce6af7f2190722ae7441b3524e350ecc1d7eff48..33317d37fe2e8182910cc8278ad634181521cd21:/flip.c diff --git a/flip.c b/flip.c index f1fcaf6..503681e 100644 --- a/flip.c +++ b/flip.c @@ -928,8 +928,8 @@ static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds, default: assert(!"shouldn't get here"); } ui->cx += dx; ui->cy += dy; - ui->cx = min(max(ui->cx, 0), state->w); - ui->cy = min(max(ui->cy, 0), state->h); + ui->cx = min(max(ui->cx, 0), state->w - 1); + ui->cy = min(max(ui->cy, 0), state->h - 1); ui->cdraw = 1; nullret = ""; }