(svn r9300) -Codechange: Use cargo's town effect property in the subsidy gui
authorpeter1138
Sun, 18 Mar 2007 21:58:03 +0000
changeset 6328 1a886da998fa
parent 6327 1c98317eba09
child 6329 a492d5e61d7b
(svn r9300) -Codechange: Use cargo's town effect property in the subsidy gui
src/subsidy_gui.cpp
--- a/src/subsidy_gui.cpp	Sun Mar 18 21:44:00 2007 +0000
+++ b/src/subsidy_gui.cpp	Sun Mar 18 21:58:03 2007 +0000
@@ -13,6 +13,7 @@
 #include "economy.h"
 #include "variables.h"
 #include "date.h"
+#include "cargotype.h"
 
 static void HandleSubsidyClick(int y)
 {
@@ -50,22 +51,24 @@
 
 handle_click:
 
+	TownEffect te = GetCargo(s->cargo_type)->town_effect;
+
 	/* determine from coordinate for subsidy and try to scroll to it */
 	offs = s->from;
 	if (s->age >= 12) {
 		xy = GetStation(offs)->xy;
-	} else if (s->cargo_type == CT_PASSENGERS || s->cargo_type == CT_MAIL) {
+	} else if (te == TE_PASSENGERS || te == TE_MAIL) {
 		xy = GetTown(offs)->xy;
 	} else {
 		xy = GetIndustry(offs)->xy;
+	}
 
-	}
 	if (!ScrollMainWindowToTile(xy)) {
 		/* otherwise determine to coordinate for subsidy and scroll to it */
 		offs = s->to;
 		if (s->age >= 12) {
 			xy = GetStation(offs)->xy;
-		} else if (s->cargo_type == CT_PASSENGERS || s->cargo_type == CT_MAIL || s->cargo_type == CT_GOODS || s->cargo_type == CT_FOOD) {
+		} else if (te == TE_PASSENGERS || te == TE_MAIL || te == TE_GOODS || te == TE_FOOD) {
 			xy = GetTown(offs)->xy;
 		} else {
 			xy = GetIndustry(offs)->xy;