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
commit0194a3da1e7f1ea0ac6cf30a4d77f90d878a9a79 (patch)
treee6f9f48703c42cc20eef57f8a0476871b5828a4e /newgrf_station.h
parent220342c27c9dd526db1e88716a6db048be0cbb3c (diff)
downloadopenttd-0194a3da1e7f1ea0ac6cf30a4d77f90d878a9a79.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;
/**