1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 18:07:53 +01:00

Fix balloon stall

This commit is contained in:
Gymnasiast
2017-01-11 22:37:59 +01:00
parent 9aadf6ce42
commit 7767f506be

View File

@@ -666,6 +666,12 @@ private:
dst->track_colour_main[0] = RCT1::GetColour(src->track_primary_colour);
dst->track_colour_additional[0] = RCT1::GetColour(src->track_secondary_colour);
dst->track_colour_supports[0] = RCT1::GetColour(src->track_support_colour);
// Balloons were always blue in the original RCT.
if (src->type == RCT1_RIDE_TYPE_BALLOON_STALL)
{
dst->track_colour_main[0] = COLOUR_LIGHT_BLUE;
}
}
else
{