(svn r4783) - Newstations: fix graphical bug that affected some stations when a station has a high amount of cargo waiting.

pull/155/head
peter1138 19 years ago
parent e4aed98827
commit 9c1282d283

@ -420,7 +420,7 @@ static const SpriteGroup *StationResolveReal(const ResolverObject *object, const
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 {

Loading…
Cancel
Save