Skip to content

Commit

Permalink
cleanup RideData.h
Browse files Browse the repository at this point in the history
  • Loading branch information
spacek531 committed May 13, 2024
1 parent d571e53 commit bcd8fa7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/openrct2/ride/RideData.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ struct RideTrackSpeedSettings

struct RideBoosterSettings
{
uint8_t PoweredLiftAcceleration;
uint8_t BoosterAcceleration;
uint8_t PoweredLiftAcceleration = 0;
uint8_t BoosterAcceleration = 0;
uint8_t AccelerationFactor = 12; // the amount to right-shift the launch speed for powered launch from a station
};

Expand Down Expand Up @@ -559,10 +559,10 @@ constexpr RideTypeDescriptor DummyRTD =
.Flags = 0,
.RideModes = EnumsToFlags(RideMode::ContinuousCircuit),
.DefaultMode = RideMode::ContinuousCircuit,
.OperatingSettings = { 0, 0, 1 },
.TrackSpeedSettings = { 30, 30 },
.BoosterSettings = {0, 0, 12},
.LegacyBoosterSettings = {0, 0, 2},
.OperatingSettings = {},
.TrackSpeedSettings = {},
.BoosterSettings = {},
.LegacyBoosterSettings = {},
.Naming = { STR_UNKNOWN_RIDE, STR_RIDE_DESCRIPTION_UNKNOWN },
.NameConvention = { RideComponentType::Train, RideComponentType::Track, RideComponentType::Station },
.EnumName = "(INVALID)",
Expand Down

0 comments on commit bcd8fa7

Please sign in to comment.