(svn r4783) - Newstations: fix graphical bug that affected some stations when a station has a high amount of cargo waiting.
--- a/newgrf_station.c Mon May 08 13:35:25 2006 +0000
+++ b/newgrf_station.c Mon May 08 17:13:48 2006 +0000
@@ -420,7 +420,7 @@
if (cargo > statspec->cargo_threshold) {
if (group->g.real.num_loading > 0) {
- set = ((cargo - statspec->cargo_threshold) * group->g.real.num_loading) / (0xfff - statspec->cargo_threshold);
+ set = ((cargo - statspec->cargo_threshold) * group->g.real.num_loading) / (4096 - statspec->cargo_threshold);
return group->g.real.loading[set];
}
} else {