Changeset - r7374:9c282dd3d4c9
[Not reviewed]
master
0 2 0
rubidium - 17 years ago 2007-08-01 19:13:42
rubidium@openttd.org
(svn r10743) -Fix: some typos introduces by copy-pasting.
2 files changed with 6 insertions and 6 deletions:
0 comments (0 inline, 0 general)
src/cargopacket.cpp
Show inline comments
 
@@ -21,9 +21,9 @@ static void CargoPacketPoolNewBlock(uint
 
	for (CargoPacket *cp = GetCargoPacket(cpart_item); cp != NULL; cp = (cp->index + 1U < GetCargoPacketPoolSize()) ? GetCargoPacket(cp->index + 1U) : NULL) cp->index = cpart_item++;
 
}
 

	
 
static void CargoPacketPoolCleanBlock(uint cpart_item, uint end_item)
 
static void CargoPacketPoolCleanBlock(uint start_item, uint end_item)
 
{
 
	for (uint i = cpart_item; i <= end_item; i++) {
 
	for (uint i = start_item; i <= end_item; i++) {
 
		CargoPacket *cp = GetCargoPacket(i);
 
		if (cp->IsValid()) cp->~CargoPacket();
 
	}
src/cargopacket.h
Show inline comments
 
@@ -51,12 +51,12 @@ struct CargoPacket {
 
	bool SameSource(CargoPacket *cp);
 

	
 

	
 
	/* normal new/delete operators. Used when building/removing station */
 
	void* operator new (size_t size);
 
	/* normal new/delete operators. Used when building/removing cargo packet */
 
	void *operator new (size_t size);
 
	void operator delete(void *p);
 

	
 
	/* new/delete operators accepting station index. Used when loading station from savegame. */
 
	void* operator new (size_t size, CargoPacket::ID cp_idx);
 
	/* new/delete operators accepting cargo packet index. Used when loading cargo packets from savegame. */
 
	void *operator new (size_t size, CargoPacket::ID cp_idx);
 
	void operator delete(void *p, CargoPacket::ID cp_idx);
 

	
 
private:
0 comments (0 inline, 0 general)