summaryrefslogtreecommitdiff
path: root/newgrf_station.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-04-28 21:32:59 +0000
committerpeter1138 <peter1138@openttd.org>2006-04-28 21:32:59 +0000
commitd039d332ecbb96186249208e5692f900ef2ec07e (patch)
treeb2f634b719f0912faddaec04941c4b51aee9cf8e /newgrf_station.h
parent725f04b0e1dde00890ef3b6cceb83b15ce0a5a16 (diff)
downloadopenttd-d039d332ecbb96186249208e5692f900ef2ec07e.tar.xz
(svn r4613) - NewGRF: fix two struct declarations
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 00776dab5..7ebe78852 100644
--- a/newgrf_station.h
+++ b/newgrf_station.h
@@ -17,7 +17,7 @@ typedef enum {
* where index is computed as (x * platforms) + platform. */
typedef byte *StationLayout;
-typedef struct stationspec {
+typedef struct StationSpec {
uint32 grfid; ///< ID of GRF file station belongs to.
int localidx; ///< Index within GRF file of station.
@@ -75,7 +75,7 @@ typedef struct stationspec {
/**
* Struct containing information relating to station classes.
*/
-typedef struct stationclass {
+typedef struct StationClass {
uint32 id; ///< ID of this class, e.g. 'DFLT', 'WAYP', etc.
StringID name; ///< Name of this class.
uint stations; ///< Number of stations in this class.