X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/2769dce562b682b172161f8338c387097b786dba..f96188ff220392d9e2fac751d20e087b1e8f3b9e:/galaxies.c diff --git a/galaxies.c b/galaxies.c index d59509e..58e33eb 100644 --- a/galaxies.c +++ b/galaxies.c @@ -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;