diff options
Diffstat (limited to 'game/vehicles/train.cpp')
-rw-r--r-- | game/vehicles/train.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/vehicles/train.cpp b/game/vehicles/train.cpp index 05915c4..d1122f8 100644 --- a/game/vehicles/train.cpp +++ b/game/vehicles/train.cpp @@ -26,9 +26,9 @@ Train::getBogiePosition(float linkDist, float dist) const } bool -Train::intersectRay(const Ray & ray, glm::vec2 * baryPos, float * eh) const +Train::intersectRay(const Ray & ray, glm::vec2 * baryPos, float * distance) const { - return applyOne(&RailVehicle::intersectRay, ray, baryPos, eh) != end(); + return applyOne(&RailVehicle::intersectRay, ray, baryPos, distance) != end(); } void |