From 17bebcac7bf49c2927fb3bc0d63a6fdc268eb0d7 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 1 Jun 2005 06:47:55 +0000 Subject: [PATCH] Typo in click bounds checking. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@5890 cda61777-01e9-0310-a592-d414129be87e --- mines.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mines.c b/mines.c index fcf439d..6a3d7aa 100644 --- a/mines.c +++ b/mines.c @@ -2454,7 +2454,7 @@ static game_state *make_move(game_state *from, game_ui *ui, game_drawstate *ds, cx = FROMCOORD(x); cy = FROMCOORD(y); - if (cx < 0 || cx >= from->w || cy < 0 || cy > from->h) + if (cx < 0 || cx >= from->w || cy < 0 || cy >= from->h) return NULL; if (button == LEFT_BUTTON || button == LEFT_DRAG || -- 2.11.0