Mercurial > hg > openttd
diff src/economy.cpp @ 17756:6e539d6e9fe0 draft
(svn r22540) -Codechange: Rename AcceptancePickup to GoodsEntryStatus.
author | terkhen <terkhen@openttd.org> |
---|---|
date | Sat, 04 Jun 2011 21:17:07 +0000 (2011-06-04) |
parents | 74a00ba15e7d |
children | 0e811605b53c |
line wrap: on
line diff
--- a/src/economy.cpp +++ b/src/economy.cpp @@ -1180,7 +1180,7 @@ payment->SetCargo(v->cargo_type); - if (HasBit(ge->acceptance_pickup, GoodsEntry::ACCEPTANCE) && !(u->current_order.GetUnloadType() & OUFB_TRANSFER)) { + if (HasBit(ge->acceptance_pickup, GoodsEntry::GES_ACCEPTANCE) && !(u->current_order.GetUnloadType() & OUFB_TRANSFER)) { /* The cargo has reached its final destination, the packets may now be destroyed */ remaining = v->cargo.MoveTo<StationCargoList>(NULL, amount_unloaded, VehicleCargoList::MTA_FINAL_DELIVERY, payment, last_visited); @@ -1195,9 +1195,9 @@ * accept cargo that was loaded at the same station. */ if ((u->current_order.GetUnloadType() & (OUFB_UNLOAD | OUFB_TRANSFER)) && (!accepted || v->cargo.Count() == cargo_count)) { remaining = v->cargo.MoveTo(&ge->cargo, amount_unloaded, u->current_order.GetUnloadType() & OUFB_TRANSFER ? VehicleCargoList::MTA_TRANSFER : VehicleCargoList::MTA_UNLOAD, payment); - if (!HasBit(ge->acceptance_pickup, GoodsEntry::PICKUP)) { + if (!HasBit(ge->acceptance_pickup, GoodsEntry::GES_PICKUP)) { InvalidateWindowData(WC_STATION_LIST, last_visited); - SetBit(ge->acceptance_pickup, GoodsEntry::PICKUP); + SetBit(ge->acceptance_pickup, GoodsEntry::GES_PICKUP); } dirty_vehicle = dirty_station = true;