diff --git a/src/openrct2/ride/gentle/FerrisWheel.cpp b/src/openrct2/ride/gentle/FerrisWheel.cpp index 06eac99903..9f1378fe86 100644 --- a/src/openrct2/ride/gentle/FerrisWheel.cpp +++ b/src/openrct2/ride/gentle/FerrisWheel.cpp @@ -34,10 +34,10 @@ static constexpr const uint8_t edges_1x4_nw_se[] = { /** rct2: 0x008A8CA8 */ static constexpr BoundBoxXY FerrisWheelData[] = { - { { 1, 8 }, { 31, 16 } }, - { { 8, 1 }, { 16, 31 } }, - { { 1, 8 }, { 31, 16 } }, - { { 8, 1 }, { 16, 31 } }, + { { 1, 8 }, { 31, 16 } }, + { { 8, 1 }, { 16, 31 } }, + { { 1, 8 }, { 31, 16 } }, + { { 8, 1 }, { 16, 31 } }, }; static void PaintFerrisWheelRiders( diff --git a/src/openrct2/ride/thrill/SwingingShip.cpp b/src/openrct2/ride/thrill/SwingingShip.cpp index b3d46bae87..f47e064ca6 100644 --- a/src/openrct2/ride/thrill/SwingingShip.cpp +++ b/src/openrct2/ride/thrill/SwingingShip.cpp @@ -35,10 +35,10 @@ static constexpr const uint32_t SwingingShipBaseSpriteOffset[] = { /** rct2: 0x008A83C0 */ static constexpr const BoundBoxXY SwingingShipData[] = { - { 1, 8, 31, 16 }, - { 8, 1, 16, 31 }, - { 1, 8, 31, 16 }, - { 8, 1, 16, 31 }, + { 1, 8, 31, 16 }, + { 8, 1, 16, 31 }, + { 1, 8, 31, 16 }, + { 8, 1, 16, 31 }, }; enum diff --git a/src/openrct2/world/Location.hpp b/src/openrct2/world/Location.hpp index c0ea257bab..c39ba643c3 100644 --- a/src/openrct2/world/Location.hpp +++ b/src/openrct2/world/Location.hpp @@ -715,8 +715,8 @@ struct BoundBoxXY } constexpr BoundBoxXY(int32_t _offX, int32_t _offY, int32_t _lenX, int32_t _lenY) - : offset({_offX, _offY}) - , length({_lenX, _lenY}) + : offset({ _offX, _offY }) + , length({ _lenX, _lenY }) { } }; @@ -734,8 +734,8 @@ struct BoundBoxXYZ } constexpr BoundBoxXYZ(int32_t _offX, int32_t _offY, int32_t _offZ, int32_t _lenX, int32_t _lenY, int32_t _lenZ) - : offset({_offX, _offY, _offZ}) - , length({_lenX, _lenY, _lenZ}) + : offset({ _offX, _offY, _offZ }) + , length({ _lenX, _lenY, _lenZ }) { } };