1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-19 10:22:39 +01:00

(svn r14137) -Codechange: Remove a now unused member of CargoPacket

This commit is contained in:
celestar
2008-08-23 09:31:53 +00:00
parent e89e6b1361
commit 7e8c7dfcbf
2 changed files with 0 additions and 13 deletions

View File

@@ -274,14 +274,3 @@ void CargoList::InvalidateCache()
source = (*packets.begin())->source;
}
/** Restore an array of cargo packets from a backup
* The end of the row should be marked by an invalid packet
*/
void CargoPacket::RestoreBackup() const
{
for (const CargoPacket *cargo = this; cargo->IsValid(); cargo++) {
CargoPacket *dest = GetCargoPacket(cargo->index);
assert(!dest->IsValid());
memcpy(dest, cargo, sizeof(CargoPacket));
}
}