From 991fbeaefabde6cbe8cdb03cc4a296f1a5908c42 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Fri, 2 Mar 2007 15:17:48 +0000 Subject: [PATCH] (svn r8976) -Codechange: Reinitialize all engines after grf files have been reloaded/changed. --- src/openttd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/openttd.cpp b/src/openttd.cpp index 8dc6a36feb..29a57d27ca 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -1852,6 +1852,7 @@ void ReloadNewGRFData(void) /* reload vehicles */ ResetVehiclePosHash(); AfterLoadVehicles(); + StartupEngines(); /* update station and waypoint graphics */ AfterLoadWaypoints(); AfterLoadStations();