mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 06:23:04 +01:00
add last_crash_type to ride struct
This commit is contained in:
@@ -293,7 +293,7 @@ typedef struct {
|
||||
uint32 no_secondary_items_sold; // 0x1A8
|
||||
uint8 var_1AC;
|
||||
uint8 var_1AD;
|
||||
uint8 var_1AE;
|
||||
uint8 last_crash_type;
|
||||
uint8 connected_message_throttle; // 0x1AF
|
||||
money32 income_per_hour; // 0x1B0
|
||||
money32 profit; // 0x1B4
|
||||
@@ -736,6 +736,12 @@ enum {
|
||||
RIDE_TYPE_FLAG_SUPPORTS_MULTIPLE_TRACK_COLOUR = 1 << 31,
|
||||
};
|
||||
|
||||
enum {
|
||||
RIDE_CRASH_TYPE_NONE = 0,
|
||||
RIDE_CRASH_TYPE_NO_FATALITIES = 2,
|
||||
RIDE_CRASH_TYPE_FATALITIES = 8
|
||||
};
|
||||
|
||||
#define MAX_RIDES 255
|
||||
|
||||
#define MAX_RIDE_MEASUREMENTS 8
|
||||
|
||||
Reference in New Issue
Block a user