From 04f99447469d335af52702aad35cc2d3f705c06d Mon Sep 17 00:00:00 2001 From: Darkvater Date: Fri, 1 Dec 2006 00:09:13 +0000 Subject: (svn r7313) -Codechange: Calling invalidate data on a window will surely warrant a redraw, so call that after the WE_INVALIDATE_DATA event and remove (some of) the superflouous calls. --- rail_cmd.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'rail_cmd.c') 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) { -- cgit v1.2.3-54-g00ecf