1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Initialise more variables to keep AppVeyor happy

This commit is contained in:
Michael Steenbeek
2017-10-18 13:40:20 +02:00
parent e4132c9030
commit c77c15e4de

View File

@@ -7048,9 +7048,9 @@ static sint32 ride_get_smallest_station_length(Ride *ride)
static sint32 ride_get_track_length(Ride * ride)
{
rct_window * w;
rct_map_element * mapElement;
rct_map_element * mapElement = NULL;
track_circuit_iterator it;
sint32 x, y, z, trackType, rideIndex, result;
sint32 x = 0, y = 0, z, trackType, rideIndex, result;
bool foundTrack = false;
for (sint32 i = 0; i < MAX_STATIONS && !foundTrack; i++)