summaryrefslogtreecommitdiff
path: root/newgrf_station.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-17 21:26:12 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-17 21:26:12 +0000
commit282b76a0b3683fda13eb8c413720aff957c74f8b (patch)
treee6f9f48703c42cc20eef57f8a0476871b5828a4e /newgrf_station.h
parent450c13c1da3d636d7426de62369a0314702e9449 (diff)
downloadopenttd-282b76a0b3683fda13eb8c413720aff957c74f8b.tar.xz
(svn r4901) - Codechange: change 'SpriteGroup *' to 'struct SpriteGroup *' within StationSpec and GRFFile struct declarations. Now only code which actually references those pointers needs to know about the SpriteGroup struct. Remove some unnecessary lingering header dependencies.
Diffstat (limited to 'newgrf_station.h')
-rw-r--r--newgrf_station.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/newgrf_station.h b/newgrf_station.h
index 33f3d732a..284b80121 100644
--- a/newgrf_station.h
+++ b/newgrf_station.h
@@ -72,8 +72,8 @@ typedef struct StationSpec {
* Used for obtaining the sprite offset of custom sprites, and for
* evaluating callbacks.
*/
- SpriteGroup *spritegroup[NUM_GLOBAL_CID];
- SpriteGroup *groundgroup;
+ struct SpriteGroup *spritegroup[NUM_GLOBAL_CID];
+ struct SpriteGroup *groundgroup;
} StationSpec;
/**