diff --git a/src/openrct2/rct2/S6Exporter.cpp b/src/openrct2/rct2/S6Exporter.cpp index cead99afdb..ce3a793d9c 100644 --- a/src/openrct2/rct2/S6Exporter.cpp +++ b/src/openrct2/rct2/S6Exporter.cpp @@ -532,7 +532,8 @@ void S6Exporter::ExportRide(rct2_ride* dst, const Ride* src) } else { - dst->station_starts[i] = { static_cast(src->stations[i].Start.x), static_cast(src->stations[i].Start.y) }; + dst->station_starts[i] = { static_cast(src->stations[i].Start.x), + static_cast(src->stations[i].Start.y) }; } dst->station_heights[i] = src->stations[i].Height; dst->station_length[i] = src->stations[i].Length;