mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 19:02:04 -05:00
Fix incorrect label when using Log Bumps piece on Car Ride
This commit is contained in:
parent
b86c28a66e
commit
f293dee3d1
1 changed files with 2 additions and 2 deletions
|
@ -2245,7 +2245,7 @@ static void window_ride_construction_invalidate(rct_window* w)
|
|||
if (_currentTrackCurve & RideConstructionSpecialPieceSelected)
|
||||
{
|
||||
stringId = RideConfigurationStringIds[_currentTrackCurve & ~RideConstructionSpecialPieceSelected];
|
||||
if (stringId == STR_RAPIDS && ride->type == RIDE_TYPE_MONSTER_TRUCKS)
|
||||
if (stringId == STR_RAPIDS && (ride->type == RIDE_TYPE_MONSTER_TRUCKS || ride->type == RIDE_TYPE_CAR_RIDE))
|
||||
{
|
||||
stringId = STR_LOG_BUMPS;
|
||||
}
|
||||
|
@ -3346,7 +3346,7 @@ static void window_ride_construction_show_special_track_dropdown(rct_window* w,
|
|||
if (trackPieceStringId == STR_RAPIDS)
|
||||
{
|
||||
auto ride = get_ride(_currentRideIndex);
|
||||
if (ride != nullptr && ride->type == RIDE_TYPE_MONSTER_TRUCKS)
|
||||
if (ride != nullptr && (ride->type == RIDE_TYPE_MONSTER_TRUCKS || ride->type == RIDE_TYPE_CAR_RIDE))
|
||||
trackPieceStringId = STR_LOG_BUMPS;
|
||||
}
|
||||
if (trackPieceStringId == STR_SPINNING_CONTROL_TOGGLE_TRACK)
|
||||
|
|
Loading…
Add table
Reference in a new issue