mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
Fix formatting on files
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 })
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user