(svn r11735) -Fix [FS#1574]: Don't reset loading indicator IDs when only reloading NewGRFs.

This commit is contained in:
peter1138
2008-01-01 15:06:37 +00:00
parent 61285721a4
commit 96d09cfae9
3 changed files with 6 additions and 6 deletions

View File

@@ -1371,7 +1371,7 @@ bool AfterLoadGame()
InitializeLandscapeVariables(true);
/* Update all vehicles */
AfterLoadVehicles();
AfterLoadVehicles(true);
/* Update all waypoints */
if (CheckSavegameVersion(12)) FixOldWaypoints();
@@ -2284,7 +2284,7 @@ void ReloadNewGRFData()
LoadStringWidthTable();
/* reload vehicles */
ResetVehiclePosHash();
AfterLoadVehicles();
AfterLoadVehicles(false);
StartupEngines();
/* update station and waypoint graphics */
AfterLoadWaypoints();