diff --git a/src/ride/track.c b/src/ride/track.c index c4fca46766..b5fab55775 100644 --- a/src/ride/track.c +++ b/src/ride/track.c @@ -4186,7 +4186,7 @@ static bool track_add_station_element(int x, int y, int z, int direction, int ri return false; } - if (stationLength > 32) { + if (stationLength > MAX_STATION_PLATFORM_LENGTH) { gGameCommandErrorText = STR_STATION_PLATFORM_TOO_LONG; return false; } diff --git a/src/ride/track.h b/src/ride/track.h index 7be90759d6..190ed0d6fa 100644 --- a/src/ride/track.h +++ b/src/ride/track.h @@ -117,6 +117,8 @@ enum { #define TRACK_PREVIEW_IMAGE_SIZE (370 * 217) +#define MAX_STATION_PLATFORM_LENGTH 32 + /** * Track design structure. * size: 0x4E72B