(svn r22457) -Codechange: Make the NewGRFSpriteLayout a direct member of TileLayoutSpriteGroup instead of allocating it separately.

This commit is contained in:
frosch
2011-05-14 17:33:26 +00:00
parent 7415b9cca2
commit e55f849a29
7 changed files with 19 additions and 25 deletions

View File

@@ -35,11 +35,6 @@ RandomizedSpriteGroup::~RandomizedSpriteGroup()
free((void*)this->groups);
}
TileLayoutSpriteGroup::~TileLayoutSpriteGroup()
{
delete this->dts;
}
TemporaryStorageArray<int32, 0x110> _temp_store;