summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index e486dd2ff..b91b232a9 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -1385,8 +1385,8 @@ Vehicle *CheckClickOnVehicle(const ViewPort *vp, int x, int y)
y >= v->top_coord && y <= v->bottom_coord) {
dist = max(
- myabs( ((v->left_coord + v->right_coord)>>1) - x ),
- myabs( ((v->top_coord + v->bottom_coord)>>1) - y )
+ abs( ((v->left_coord + v->right_coord)>>1) - x ),
+ abs( ((v->top_coord + v->bottom_coord)>>1) - y )
);
if (dist < best_dist) {