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

Rename MAX_TRACK_HEIGHT to kMaximumTrackHeight

This commit is contained in:
Gymnasiast
2025-12-23 21:33:45 +01:00
parent 14df4d5910
commit 014bdbff47
3 changed files with 4 additions and 4 deletions

View File

@@ -3445,7 +3445,7 @@ namespace OpenRCT2::Ui::Windows
_previousTrackPiece = _currentTrackBegin;
// search for appropriate z value for ghost, up to max ride height
int numAttempts = (z <= MAX_TRACK_HEIGHT ? ((MAX_TRACK_HEIGHT - z) / kCoordsZStep + 1) : 2);
int numAttempts = (z <= kMaximumTrackHeight ? ((kMaximumTrackHeight - z) / kCoordsZStep + 1) : 2);
if (rtd.specialType == RtdSpecialType::maze)
{
@@ -3676,7 +3676,7 @@ namespace OpenRCT2::Ui::Windows
}
// search for z value to build at, up to max ride height
int numAttempts = (z <= MAX_TRACK_HEIGHT ? ((MAX_TRACK_HEIGHT - z) / kCoordsZStep + 1) : 2);
int numAttempts = (z <= kMaximumTrackHeight ? ((kMaximumTrackHeight - z) / kCoordsZStep + 1) : 2);
const auto& rtd = ride->getRideTypeDescriptor();
if (rtd.specialType == RtdSpecialType::maze)

View File

@@ -254,7 +254,7 @@ namespace OpenRCT2::GameActions
clearanceZ = floor2(clearanceZ, kCoordsZStep) + baseZ;
if (clearanceZ > MAX_TRACK_HEIGHT)
if (clearanceZ > kMaximumTrackHeight)
{
return Result(Status::invalidParameters, STR_RIDE_CONSTRUCTION_CANT_CONSTRUCT_THIS_HERE, STR_TOO_HIGH);
}

View File

@@ -223,7 +223,7 @@ enum
};
constexpr int8_t kMaxStationPlatformLength = 32;
constexpr uint16_t const MAX_TRACK_HEIGHT = 254 * kCoordsZStep;
constexpr uint16_t kMaximumTrackHeight = 254 * kCoordsZStep;
constexpr uint8_t const DEFAULT_SEAT_ROTATION = 4;
enum class TrackCurve : uint8_t