aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2005-05-11 18:49:42 +0000
committerSimon Tatham <anakin@pobox.com>2005-05-11 18:49:42 +0000
commit18a8df1b9d06052ee3dba05202039cc2e8ee4f8d (patch)
tree7078d86ba7427952978cf3772c2dba39a6f94c26
parent701cd045b36f9be1b0b8cfb74d9c191cb5813e98 (diff)
downloadpuzzles-18a8df1b9d06052ee3dba05202039cc2e8ee4f8d.zip
puzzles-18a8df1b9d06052ee3dba05202039cc2e8ee4f8d.tar.gz
puzzles-18a8df1b9d06052ee3dba05202039cc2e8ee4f8d.tar.bz2
puzzles-18a8df1b9d06052ee3dba05202039cc2e8ee4f8d.tar.xz
Bah. Try the r5766 fix again, this time without the typo.
[originally from svn r5767] [r5766 == 701cd045b36f9be1b0b8cfb74d9c191cb5813e98]
-rw-r--r--twiddle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/twiddle.c b/twiddle.c
index 7585239..589dbe6 100644
--- a/twiddle.c
+++ b/twiddle.c
@@ -700,7 +700,7 @@ static void draw_tile(frontend *fe, game_state *state, int x, int y,
* new move is also being made.
*/
if (rot && (x < rot->cx || y < rot->cy ||
- x >= rot->cx+rot->cw || y > rot->cy+rot->ch))
+ x >= rot->cx+rot->cw || y >= rot->cy+rot->ch))
rot = NULL;
if (rot)