1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Rename MaxBannerObjects to kMaxBannerObjects

This commit is contained in:
Harry Hopkinson
2024-06-06 20:41:23 +01:00
parent f5ea4a324e
commit 00c8dfc0be
2 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ namespace RCT2::Limits
constexpr uint8_t kMaxSmallSceneryObjects = 252;
constexpr uint8_t kMaxLargeSceneryObjects = 128;
constexpr uint8_t kMaxWallSceneryObjects = 128;
constexpr uint8_t MaxBannerObjects = 32;
constexpr uint8_t kMaxBannerObjects = 32;
constexpr uint8_t MaxPathObjects = 16;
constexpr uint8_t MaxPathAdditionObjects = 15;
constexpr uint8_t MaxSceneryGroupObjects = 19;

View File

@@ -34,7 +34,7 @@ namespace RCT2
Limits::kMaxSmallSceneryObjects +
Limits::kMaxLargeSceneryObjects +
Limits::kMaxWallSceneryObjects +
Limits::MaxBannerObjects +
Limits::kMaxBannerObjects +
Limits::MaxPathObjects +
Limits::MaxPathAdditionObjects +
Limits::MaxSceneryGroupObjects +
@@ -50,7 +50,7 @@ namespace RCT2
Limits::kMaxSmallSceneryObjects,
Limits::kMaxLargeSceneryObjects,
Limits::kMaxWallSceneryObjects,
Limits::MaxBannerObjects,
Limits::kMaxBannerObjects,
Limits::MaxPathObjects,
Limits::MaxPathAdditionObjects,
Limits::MaxSceneryGroupObjects,
@@ -824,7 +824,7 @@ namespace RCT2
RCTObjectEntry SceneryObjects[Limits::kMaxSmallSceneryObjects];
RCTObjectEntry LargeSceneryObjects[Limits::kMaxLargeSceneryObjects];
RCTObjectEntry WallSceneryObjects[Limits::kMaxWallSceneryObjects];
RCTObjectEntry BannerObjects[Limits::MaxBannerObjects];
RCTObjectEntry BannerObjects[Limits::kMaxBannerObjects];
RCTObjectEntry PathObjects[Limits::MaxPathObjects];
RCTObjectEntry PathAdditionObjects[Limits::MaxPathAdditionObjects];
RCTObjectEntry SceneryGroupObjects[Limits::MaxSceneryGroupObjects];