diff options
Diffstat (limited to 'rail_cmd.c')
-rw-r--r-- | rail_cmd.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/rail_cmd.c b/rail_cmd.c index cb5ff4213..19af91a9b 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -2010,11 +2010,10 @@ static uint32 VehicleEnter_Track(Vehicle *v, TileIndex tile, int x, int y) v->u.rail.track = 0x80, v->vehstatus |= VS_HIDDEN; /* hide it */ v->direction = ReverseDir(v->direction); - InvalidateWindowData(WC_VEHICLE_DEPOT, v->tile); - if (v->next == NULL) - VehicleEnterDepot(v); + if (v->next == NULL) VehicleEnterDepot(v); v->tile = tile; - InvalidateWindow(WC_VEHICLE_DEPOT, tile); + + InvalidateWindowData(WC_VEHICLE_DEPOT, v->tile); return 4; } } else if (fract_coord_leave == fract_coord) { |