1
0
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:
iikorni
2021-12-08 16:50:23 -06:00
committed by Gymnasiast
parent 4fa4e4d440
commit 388387c809
3 changed files with 12 additions and 12 deletions

View File

@@ -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(

View File

@@ -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

View File

@@ -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 })
{
}
};