diff options
author | bjarni <bjarni@openttd.org> | 2005-11-08 23:18:09 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2005-11-08 23:18:09 +0000 |
commit | 5e278b7ec3adfa6f0b65f3cff5769943166bef22 (patch) | |
tree | 285ee5a9f639c628b2201866501b9654709c0787 /ship_cmd.c | |
parent | 5481dcd191a1b763330345d11264de6eac91a106 (diff) | |
download | openttd-5e278b7ec3adfa6f0b65f3cff5769943166bef22.tar.xz |
(svn r3156) -Fix: removed some cases where autoreplace windows were redrawn when nothing was changed
due to the FOR_ALL_VEHICLES(), redrawing those windows are slow
Diffstat (limited to 'ship_cmd.c')
-rw-r--r-- | ship_cmd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ship_cmd.c b/ship_cmd.c index e0e099009..887fd70d2 100644 --- a/ship_cmd.c +++ b/ship_cmd.c @@ -921,7 +921,8 @@ int32 CmdBuildShip(int x, int y, uint32 flags, uint32 p1, uint32 p2) InvalidateWindow(WC_VEHICLE_DEPOT, v->tile); RebuildVehicleLists(); InvalidateWindow(WC_COMPANY, v->owner); - InvalidateWindow(WC_REPLACE_VEHICLE, VEH_Ship); // updates the replace Ship window + if (IsLocalPlayer()) + InvalidateWindow(WC_REPLACE_VEHICLE, VEH_Ship); // updates the replace Ship window } return value; @@ -953,7 +954,8 @@ int32 CmdSellShip(int x, int y, uint32 flags, uint32 p1, uint32 p2) InvalidateWindow(WC_COMPANY, v->owner); DeleteWindowById(WC_VEHICLE_VIEW, v->index); DeleteVehicle(v); - InvalidateWindow(WC_REPLACE_VEHICLE, VEH_Ship); // updates the replace Ship window + if (IsLocalPlayer()) + InvalidateWindow(WC_REPLACE_VEHICLE, VEH_Ship); // updates the replace Ship window } return -(int32)v->value; |