mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r21143) -Codechange: reduce the number of dereferences in UpdateStationWaiting
This commit is contained in:
parent
adb1692a4d
commit
c916455a68
@ -3192,15 +3192,16 @@ void ModifyStationRatingAround(TileIndex tile, Owner owner, int amount, uint rad
|
||||
|
||||
static uint UpdateStationWaiting(Station *st, CargoID type, uint amount, SourceType source_type, SourceID source_id)
|
||||
{
|
||||
amount += st->goods[type].amount_fract;
|
||||
st->goods[type].amount_fract = GB(amount, 0, 8);
|
||||
GoodsEntry &ge = st->goods[type];
|
||||
amount += ge.amount_fract;
|
||||
ge.amount_fract = GB(amount, 0, 8);
|
||||
|
||||
amount >>= 8;
|
||||
/* No new "real" cargo item yet. */
|
||||
if (amount == 0) return 0;
|
||||
|
||||
st->goods[type].cargo.Append(new CargoPacket(st->index, st->xy, amount, source_type, source_id));
|
||||
SetBit(st->goods[type].acceptance_pickup, GoodsEntry::PICKUP);
|
||||
ge.cargo.Append(new CargoPacket(st->index, st->xy, amount, source_type, source_id));
|
||||
SetBit(ge.acceptance_pickup, GoodsEntry::PICKUP);
|
||||
|
||||
TriggerStationAnimation(st, st->xy, SAT_NEW_CARGO, type);
|
||||
AirportAnimationTrigger(st, AAT_STATION_NEW_CARGO, type);
|
||||
|
Loading…
Reference in New Issue
Block a user