1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 14:02:59 +01:00

Raise some object limits

This commit is contained in:
Gymnasiast
2020-03-06 09:35:17 +01:00
committed by Ted John
parent e1a510a147
commit 921d6ca7b2

View File

@@ -11,11 +11,11 @@
#include <cstdint>
constexpr const uint16_t MAX_RIDE_OBJECTS = 128;
constexpr const uint16_t MAX_SMALL_SCENERY_OBJECTS = 252;
constexpr const uint16_t MAX_LARGE_SCENERY_OBJECTS = 128;
constexpr const uint16_t MAX_WALL_SCENERY_OBJECTS = 128;
constexpr const uint16_t MAX_BANNER_OBJECTS = 32;
constexpr const uint16_t MAX_RIDE_OBJECTS = 255;
constexpr const uint16_t MAX_SMALL_SCENERY_OBJECTS = 255;
constexpr const uint16_t MAX_LARGE_SCENERY_OBJECTS = 255;
constexpr const uint16_t MAX_WALL_SCENERY_OBJECTS = 255;
constexpr const uint16_t MAX_BANNER_OBJECTS = 255;
constexpr const uint16_t MAX_PATH_OBJECTS = 16;
constexpr const uint16_t MAX_PATH_ADDITION_OBJECTS = 15;
constexpr const uint16_t MAX_SCENERY_GROUP_OBJECTS = 19;