File diff r27165:ea28ecab6159 → r27166:64e04a3ef9b1
src/saveload/station_sl.cpp
Show inline comments
 
@@ -15,12 +15,13 @@
 
#include "../station_base.h"
 
#include "../waypoint_base.h"
 
#include "../roadstop_base.h"
 
#include "../vehicle_base.h"
 
#include "../newgrf_station.h"
 
#include "../newgrf_roadstop.h"
 
#include "../timer/timer_game_calendar.h"
 

	
 
#include "table/strings.h"
 

	
 
#include "../safeguards.h"
 

	
 
/**
 
@@ -64,13 +65,13 @@ void MoveBuoysToWaypoints()
 

	
 
		StationID index    = st->index;
 
		TileIndex xy       = st->xy;
 
		Town *town         = st->town;
 
		StringID string_id = st->string_id;
 
		std::string name   = st->name;
 
		Date build_date    = st->build_date;
 
		TimerGameCalendar::Date build_date = st->build_date;
 
		/* TTDPatch could use "buoys with rail station" for rail waypoints */
 
		bool train         = st->train_station.tile != INVALID_TILE;
 
		TileArea train_st  = st->train_station;
 

	
 
		/* Delete the station, so we can make it a real waypoint. */
 
		delete st;