summaryrefslogtreecommitdiff
path: root/src/newgrf_spritegroup.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-05-14 17:33:26 +0000
committerfrosch <frosch@openttd.org>2011-05-14 17:33:26 +0000
commite55f849a29e45227fbe9611badbdf846bbd8d866 (patch)
treef9198d1166861918462580b815d154a49eff7621 /src/newgrf_spritegroup.h
parent7415b9cca278e86db5ba00b84aa535057279ef37 (diff)
downloadopenttd-e55f849a29e45227fbe9611badbdf846bbd8d866.tar.xz
(svn r22457) -Codechange: Make the NewGRFSpriteLayout a direct member of TileLayoutSpriteGroup instead of allocating it separately.
Diffstat (limited to 'src/newgrf_spritegroup.h')
-rw-r--r--src/newgrf_spritegroup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_spritegroup.h b/src/newgrf_spritegroup.h
index 3d4134af3..89be1dc08 100644
--- a/src/newgrf_spritegroup.h
+++ b/src/newgrf_spritegroup.h
@@ -280,10 +280,10 @@ struct ResultSpriteGroup : SpriteGroup {
struct TileLayoutSpriteGroup : SpriteGroup {
TileLayoutSpriteGroup() : SpriteGroup(SGT_TILELAYOUT) {}
- ~TileLayoutSpriteGroup();
+ ~TileLayoutSpriteGroup() {}
byte num_building_stages; ///< Number of building stages to show for this house/industry tile
- NewGRFSpriteLayout *dts;
+ NewGRFSpriteLayout dts;
};
struct IndustryProductionSpriteGroup : SpriteGroup {