changeset 7950:63be6ff12a83 draft

(svn r11506) -Fix [FS#1471]: selling vehicles could cause the window of others to scroll to that location.
author rubidium <rubidium@openttd.org>
date Sat, 24 Nov 2007 09:14:58 +0000
parents f24a967a1eb9
children f6ffbf027b5a
files src/vehicle.cpp
diffstat 1 files changed, 4 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -537,13 +537,10 @@
 		delete this->Next();
 	}
 
-	Window **wp;
-	FOR_ALL_WINDOWS(wp) {
-		Window *w = *wp;
-		if (w->viewport != NULL && WP(w, vp_d).follow_vehicle == this->index) {
-			ScrollMainWindowTo(this->x_pos, this->y_pos); // lock the main view on the vehicle's last position
-			WP(w, vp_d).follow_vehicle = INVALID_VEHICLE;
-		}
+	Window *w = FindWindowById(WC_VEHICLE_VIEW, this->index);
+	if (w != NULL && WP(w, vp_d).follow_vehicle == this->index) {
+		ScrollMainWindowTo(this->x_pos, this->y_pos); // lock the main view on the vehicle's last position
+		WP(w, vp_d).follow_vehicle = INVALID_VEHICLE;
 	}
 }