1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 19:56:13 +01:00

Merge pull request #1081 from Gymnasiast/allow-high-launch-speeds

Allow maxing out launch speed and many other operation settings as well
This commit is contained in:
Ted John
2015-05-17 18:21:08 +01:00
2 changed files with 5 additions and 2 deletions

View File

@@ -2700,7 +2700,10 @@ static void window_ride_mode_tweak_increase(rct_window *w)
{
rct_ride *ride = GET_RIDE(w->number);
uint8 value = ride->var_0D0;
if (value < RCT2_GLOBAL(RCT2_ADDRESS_RIDE_FLAGS + (ride->type * 8) + 5, uint8))
//fast_lift_hill is the cheat that allows maxing out many limits on the Operating tab.
uint8 max_value = gConfigCheat.fast_lift_hill ? 255 : RCT2_GLOBAL(RCT2_ADDRESS_RIDE_FLAGS + (ride->type * 8) + 5, uint8);
if (value < max_value)
value += ride->mode == RIDE_MODE_BUMPERCAR ? 10 : 1;
window_ride_mode_tweak_set(w, value);