summaryrefslogtreecommitdiff
path: root/rail_cmd.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-12-01 00:09:13 +0000
committerDarkvater <darkvater@openttd.org>2006-12-01 00:09:13 +0000
commit04f99447469d335af52702aad35cc2d3f705c06d (patch)
tree34e228c15bbd169f5c13601b61aa43ae9e3b95ba /rail_cmd.c
parent9b4d3ff4b88eb6d655bf31afc28a6afa849f07f7 (diff)
downloadopenttd-04f99447469d335af52702aad35cc2d3f705c06d.tar.xz
(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.
Diffstat (limited to 'rail_cmd.c')
-rw-r--r--rail_cmd.c7
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) {