diff --git a/src/openrct2/ride/Station.cpp b/src/openrct2/ride/Station.cpp index d6e482f266..7a84227fc2 100644 --- a/src/openrct2/ride/Station.cpp +++ b/src/openrct2/ride/Station.cpp @@ -15,7 +15,7 @@ #include "Track.h" static void ride_update_station_blocksection(Ride* ride, StationIndex stationIndex); -static void ride_update_station_bumpercar(Ride* ride, StationIndex stationIndex); +static void ride_update_station_dodgems(Ride* ride, StationIndex stationIndex); static void ride_update_station_normal(Ride* ride, StationIndex stationIndex); static void ride_update_station_race(Ride* ride, StationIndex stationIndex); static void ride_race_init_vehicle_speeds(Ride* ride); @@ -36,7 +36,7 @@ void ride_update_station(Ride* ride, StationIndex stationIndex) ride_update_station_race(ride, stationIndex); break; case RIDE_MODE_DODGEMS: - ride_update_station_bumpercar(ride, stationIndex); + ride_update_station_dodgems(ride, stationIndex); break; case RIDE_MODE_CONTINUOUS_CIRCUIT_BLOCK_SECTIONED: case RIDE_MODE_POWERED_LAUNCH_BLOCK_SECTIONED: @@ -83,7 +83,7 @@ static void ride_update_station_blocksection(Ride* ride, StationIndex stationInd * * rct2: 0x006AC12B */ -static void ride_update_station_bumpercar(Ride* ride, StationIndex stationIndex) +static void ride_update_station_dodgems(Ride* ride, StationIndex stationIndex) { // Change of station depart flag should really call invalidate_station_start // but since dodgems do not have station lights there is no point. diff --git a/src/openrct2/ride/Vehicle.cpp b/src/openrct2/ride/Vehicle.cpp index f5b2cf2f92..4e7a14ced8 100644 --- a/src/openrct2/ride/Vehicle.cpp +++ b/src/openrct2/ride/Vehicle.cpp @@ -2487,7 +2487,7 @@ void Vehicle::UpdateDodgemsMode() UpdateMotionDodgems(); - // Update the length of time vehicle has been in bumper mode + // Update the length of time vehicle has been in dodgems mode if (sub_state++ == 0xFF) { var_CE++; @@ -2613,7 +2613,7 @@ void Vehicle::UpdateWaitingToDepart() switch (curRide->mode) { case RIDE_MODE_DODGEMS: - // Bumper mode uses sub_state / var_CE to tell how long + // Dodgems mode uses sub_state / var_CE to tell how long // the vehicle has been ridden. SetState(VEHICLE_STATUS_TRAVELLING_DODGEMS); var_CE = 0;