From f4cad9017e8134cd5ecd21b116bf85a74db471de Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 18 Mar 2007 21:58:03 +0000 Subject: (svn r9300) -Codechange: Use cargo's town effect property in the subsidy gui --- src/subsidy_gui.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/subsidy_gui.cpp b/src/subsidy_gui.cpp index dbf427e66..fc4edec04 100644 --- a/src/subsidy_gui.cpp +++ b/src/subsidy_gui.cpp @@ -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 @@ static void HandleSubsidyClick(int y) 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; -- cgit v1.2.3-54-g00ecf