From ca900869afbb3f0ec3204d039d77939ff216b117 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 14 Feb 2021 13:12:08 +0000 Subject: Correctly scaled rails --- game/network/rail.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/game/network/rail.cpp b/game/network/rail.cpp index 1ed59bd..fd2ea08 100644 --- a/game/network/rail.cpp +++ b/game/network/rail.cpp @@ -46,10 +46,10 @@ constexpr const std::array, 4> railCrossSection {{ // ___________ // _/ \_ // left to right - {{-1.F, 0.F, 0.F}, 0.F}, - {{-.75F, .25F, 0.F}, 0.125F}, - {{.75F, .25F, 0.F}, 0.875F}, - {{1.F, 0.F, 0.F}, 1.F}, + {{-1.9F, 0.F, 0.F}, 0.F}, + {{-1.43F, .25F, 0.F}, 0.125F}, + {{1.43F, .25F, 0.F}, 0.875F}, + {{1.9F, 0.F, 0.F}, 1.F}, }}; constexpr auto sleepers {5.F}; // There are 5 repetitions of sleepers in the texture -- cgit v1.2.3