mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
(svn r17722) -Codechange: simplify the cargopacket constructor; unduplicate if and don't set a value to 0 if it already is 0.
This commit is contained in:
parent
9b94441eb8
commit
72dd637e92
@ -23,20 +23,18 @@ void InitializeCargoPackets()
|
||||
_cargopacket_pool.CleanPool();
|
||||
}
|
||||
|
||||
CargoPacket::CargoPacket(StationID source, uint16 count, SourceType source_type, SourceID source_id)
|
||||
CargoPacket::CargoPacket(StationID source, uint16 count, SourceType source_type, SourceID source_id) :
|
||||
count(count),
|
||||
source(source),
|
||||
source_id(source_id)
|
||||
{
|
||||
if (source != INVALID_STATION) assert(count != 0);
|
||||
|
||||
// this->feeder_share = 0; // no need to zero already zeroed data (by operator new)
|
||||
this->source_xy = (source != INVALID_STATION) ? Station::Get(source)->xy : 0;
|
||||
this->loaded_at_xy = this->source_xy;
|
||||
this->source = source;
|
||||
|
||||
this->count = count;
|
||||
// this->days_in_transit = 0;
|
||||
|
||||
this->source_type = source_type;
|
||||
this->source_id = source_id;
|
||||
|
||||
if (source != INVALID_STATION) {
|
||||
assert(count != 0);
|
||||
this->source_xy = Station::Get(source)->xy;
|
||||
this->loaded_at_xy = this->source_xy;
|
||||
}
|
||||
}
|
||||
|
||||
CargoPacket::CargoPacket(uint16 count, byte days_in_transit, Money feeder_share, SourceType source_type, SourceID source_id) :
|
||||
|
Loading…
Reference in New Issue
Block a user