Part of r7310 completely changed the careful semantics of my
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 22 Feb 2007 18:59:15 +0000 (18:59 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 22 Feb 2007 18:59:15 +0000 (18:59 +0000)
coordinate-rounding, causing picking up arrows from a dot anywhere
other than at the centre of a square to break.

git-svn-id: svn://svn.tartarus.org/sgt/puzzles@7311 cda61777-01e9-0310-a592-d414129be87e

galaxies.c

index d59509e..58e33eb 100644 (file)
@@ -2225,8 +2225,8 @@ static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds,
     } else if (button == RIGHT_BUTTON) {
         int px1, py1;
 
-        px = 2*(FROMCOORD( (int)((float)x + 0.5) ));
-        py = 2*(FROMCOORD( (int)((float)y + 0.5) ));
+        px = 2*(int)(FROMCOORD((float)x) + 0.5);
+        py = 2*(int)(FROMCOORD((float)y) + 0.5);
 
         dot = NULL;