1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 20:13:07 +01:00

Fix more large map issues

This commit is contained in:
Ted John
2021-04-10 23:10:48 +01:00
parent 7f7e296f12
commit 3d8f3e7494
3 changed files with 8 additions and 8 deletions

View File

@@ -48,12 +48,12 @@ enum PAINT_QUADRANT_FLAGS
struct paint_struct_bound_box
{
uint16_t x;
uint16_t y;
uint16_t z;
uint16_t x_end;
uint16_t y_end;
uint16_t z_end;
int32_t x;
int32_t y;
int32_t z;
int32_t x_end;
int32_t y_end;
int32_t z_end;
};
struct paint_struct

View File

@@ -36,7 +36,7 @@ constexpr const uint8_t RideExitHeight = 5 * COORDS_Z_STEP;
extern bool gParkEntranceGhostExists;
extern CoordsXYZD gParkEntranceGhostPosition;
#define MAX_PARK_ENTRANCES 4
#define MAX_PARK_ENTRANCES 256
constexpr int32_t MaxRideEntranceOrExitHeight = 244 * COORDS_Z_STEP;

View File

@@ -36,7 +36,7 @@ constexpr const int32_t MINIMUM_LAND_HEIGHT_BIG = MINIMUM_LAND_HEIGHT * COORDS_Z
constexpr const uint32_t MAX_TILE_ELEMENTS_WITH_SPARE_ROOM = 0x1000000;
constexpr const uint32_t MAX_TILE_ELEMENTS = MAX_TILE_ELEMENTS_WITH_SPARE_ROOM - 512;
#define MAX_TILE_TILE_ELEMENT_POINTERS (MAXIMUM_MAP_SIZE_TECHNICAL * MAXIMUM_MAP_SIZE_TECHNICAL)
#define MAX_PEEP_SPAWNS 2
#define MAX_PEEP_SPAWNS 256
#define TILE_UNDEFINED_TILE_ELEMENT NULL