mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 22:28:56 +00:00
(svn r2993) Fix: Reset aircraft images differently. Fixes assertion introduced in r2991.
This commit is contained in:
parent
ff30404170
commit
5f3bb18eb7
@ -191,7 +191,14 @@ void AfterLoadVehicles(void)
|
||||
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;
|
||||
case VEH_Aircraft:
|
||||
if (v->subtype == 0 || v->subtype == 2) {
|
||||
v->cur_image = GetAircraftImage(v, v->direction);
|
||||
if (v->next != NULL) {
|
||||
v->next->cur_image = v->cur_image;
|
||||
}
|
||||
}
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user