1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

Fix RIDE_INITIAL_RELIABILITY

This commit is contained in:
Gymnasiast
2017-07-20 21:35:11 +02:00
parent 367efa2020
commit 636cd5468a

View File

@@ -933,7 +933,7 @@ extern const rct_ride_properties RideProperties[RIDE_TYPE_COUNT];
#define MAX_RIDE_MEASUREMENTS 8
#define RIDE_VALUE_UNDEFINED 0xFFFF
#define RIDE_INITIAL_RELIABILITY ((100 << 8) | - 1)
#define RIDE_INITIAL_RELIABILITY ((100 << 8) | 0xFF) // Upper byte is percentage, lower byte is "decimal".
#define STATION_DEPART_FLAG (1 << 7)
#define STATION_DEPART_MASK (~STATION_DEPART_FLAG)