(svn r2991) Reset vehicle images on game load. Allows savegames with NewGRFs saved prior to r2868 to load.

This commit is contained in:
peter1138 2005-09-26 20:32:13 +00:00
parent fbf06041ca
commit 50f1a93664
1 changed files with 8 additions and 0 deletions

View File

@ -187,6 +187,14 @@ void AfterLoadVehicles(void)
FOR_ALL_VEHICLES(v) {
v->first = NULL;
if (v->type != 0) {
switch (v->type) {
case VEH_Train: v->cur_image = GetTrainImage(v, v->direction); break;
case VEH_Road: v->cur_image = GetRoadVehImage(v, v->direction); break;
case VEH_Ship: v->cur_image = GetShipImage(v, v->direction); break;
case VEH_Aircraft: v->cur_image = GetAircraftImage(v, v->direction); break;
default: break;
}
v->left_coord = INVALID_COORD;
VehiclePositionChanged(v);