summaryrefslogtreecommitdiff
path: root/station_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-02-02 16:16:43 +0000
committertruelight <truelight@openttd.org>2005-02-02 16:16:43 +0000
commitab3ed5c43121cc8adefc0c6bbcf9ef0d1203d3ff (patch)
tree76125ad531fb31d62d879d3f5541edf39532e2d5 /station_gui.c
parent944bba10312022f14ae47e6e89fb8456db0f4af3 (diff)
downloadopenttd-ab3ed5c43121cc8adefc0c6bbcf9ef0d1203d3ff.tar.xz
(svn r1770) -Fix: Hopefully last pieces of code that are containing a station-id
(and should be an uint16, not uint8)
Diffstat (limited to 'station_gui.c')
-rw-r--r--station_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/station_gui.c b/station_gui.c
index 0d8fd0b1e..d7316d429 100644
--- a/station_gui.c
+++ b/station_gui.c
@@ -432,7 +432,7 @@ static void DrawStationViewWindow(Window *w)
y = 77;
for(i=0; i!=NUM_CARGO; i++) {
- if (st->goods[i].enroute_from != 0xFF) {
+ if (st->goods[i].enroute_from != INVALID_STATION) {
SetDParam(0, _cargoc.names_s[i]);
SetDParam(2, st->goods[i].rating * 101 >> 8);
SetDParam(1, STR_3035_APPALLING + (st->goods[i].rating >> 5));