mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Rename MaxLargeSceneryObjects to kMaxLargeSceneryObjects
This commit is contained in:
@@ -35,7 +35,7 @@ namespace RCT2::Limits
|
||||
constexpr uint16_t kTD6MaxTrackElements = 8192;
|
||||
|
||||
constexpr uint8_t kMaxSmallSceneryObjects = 252;
|
||||
constexpr uint8_t MaxLargeSceneryObjects = 128;
|
||||
constexpr uint8_t kMaxLargeSceneryObjects = 128;
|
||||
constexpr uint8_t MaxWallSceneryObjects = 128;
|
||||
constexpr uint8_t MaxBannerObjects = 32;
|
||||
constexpr uint8_t MaxPathObjects = 16;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace RCT2
|
||||
constexpr uint16_t RCT2_OBJECT_ENTRY_COUNT =
|
||||
Limits::MaxRideObjects +
|
||||
Limits::kMaxSmallSceneryObjects +
|
||||
Limits::MaxLargeSceneryObjects +
|
||||
Limits::kMaxLargeSceneryObjects +
|
||||
Limits::MaxWallSceneryObjects +
|
||||
Limits::MaxBannerObjects +
|
||||
Limits::MaxPathObjects +
|
||||
@@ -48,7 +48,7 @@ namespace RCT2
|
||||
constexpr int32_t RCT2ObjectEntryGroupCounts[] = {
|
||||
Limits::MaxRideObjects,
|
||||
Limits::kMaxSmallSceneryObjects,
|
||||
Limits::MaxLargeSceneryObjects,
|
||||
Limits::kMaxLargeSceneryObjects,
|
||||
Limits::MaxWallSceneryObjects,
|
||||
Limits::MaxBannerObjects,
|
||||
Limits::MaxPathObjects,
|
||||
@@ -822,7 +822,7 @@ namespace RCT2
|
||||
{
|
||||
RCTObjectEntry RideObjects[Limits::MaxRideObjects];
|
||||
RCTObjectEntry SceneryObjects[Limits::kMaxSmallSceneryObjects];
|
||||
RCTObjectEntry LargeSceneryObjects[Limits::MaxLargeSceneryObjects];
|
||||
RCTObjectEntry LargeSceneryObjects[Limits::kMaxLargeSceneryObjects];
|
||||
RCTObjectEntry WallSceneryObjects[Limits::MaxWallSceneryObjects];
|
||||
RCTObjectEntry BannerObjects[Limits::MaxBannerObjects];
|
||||
RCTObjectEntry PathObjects[Limits::MaxPathObjects];
|
||||
|
||||
Reference in New Issue
Block a user