From 5369111580ce5013dfef6401ffb91a73d92648a9 Mon Sep 17 00:00:00 2001 From: Marijn van der Werf Date: Sat, 2 Apr 2016 16:27:23 +0200 Subject: [PATCH] Fix #3206: Round support costs properly --- src/ride/track.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ride/track.c b/src/ride/track.c index 32e1a4df1e..e65a19a354 100644 --- a/src/ride/track.c +++ b/src/ride/track.c @@ -4734,7 +4734,7 @@ static money32 track_place(int rideIndex, int type, int originX, int originY, in support_height = 10; } - cost += (((support_height / 2) * RCT2_ADDRESS(0x0097DD7A, uint16)[ride->type * 2]) / 2) * 10; + cost += ((support_height / 2) * RCT2_ADDRESS(0x0097DD7A, uint16)[ride->type * 2]) * 5; //6c56d3