mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Bah. Try the r5766 fix again, this time without the typo.
[originally from svn r5767] [r5766 == 701cd045b36f9be1b0b8cfb74d9c191cb5813e98]
This commit is contained in:
@ -700,7 +700,7 @@ static void draw_tile(frontend *fe, game_state *state, int x, int y,
|
|||||||
* new move is also being made.
|
* new move is also being made.
|
||||||
*/
|
*/
|
||||||
if (rot && (x < rot->cx || y < rot->cy ||
|
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;
|
rot = NULL;
|
||||||
|
|
||||||
if (rot)
|
if (rot)
|
||||||
|
Reference in New Issue
Block a user