diff --git a/src/openrct2/ride/Station.cpp b/src/openrct2/ride/Station.cpp index 2bcd002b89..0e5db4909e 100644 --- a/src/openrct2/ride/Station.cpp +++ b/src/openrct2/ride/Station.cpp @@ -392,16 +392,6 @@ int8_t ride_get_first_empty_station_start(const Ride* ride) return -1; } -TileCoordsXYZD ride_get_entrance_location(Ride* ride, const int32_t stationIndex) -{ - return ride->stations[stationIndex].Entrance; -} - -TileCoordsXYZD ride_get_exit_location(Ride* ride, const int32_t stationIndex) -{ - return ride->stations[stationIndex].Exit; -} - TileCoordsXYZD ride_get_entrance_location(const Ride* ride, const int32_t stationIndex) { return ride->stations[stationIndex].Entrance; diff --git a/src/openrct2/ride/Station.h b/src/openrct2/ride/Station.h index 6b7e8b222c..e37f6db9af 100644 --- a/src/openrct2/ride/Station.h +++ b/src/openrct2/ride/Station.h @@ -17,8 +17,6 @@ int8_t ride_get_first_valid_station_exit(Ride* ride); int8_t ride_get_first_valid_station_start(const Ride* ride); int8_t ride_get_first_empty_station_start(const Ride* ride); -TileCoordsXYZD ride_get_entrance_location(const Ride* ride, const int32_t stationIndex); -TileCoordsXYZD ride_get_exit_location(const Ride* ride, const int32_t stationIndex); TileCoordsXYZD ride_get_entrance_location(const Ride* ride, const int32_t stationIndex); TileCoordsXYZD ride_get_exit_location(const Ride* ride, const int32_t stationIndex);