diff options
author | peter1138 <peter1138@openttd.org> | 2006-04-28 21:32:59 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-04-28 21:32:59 +0000 |
commit | d039d332ecbb96186249208e5692f900ef2ec07e (patch) | |
tree | b2f634b719f0912faddaec04941c4b51aee9cf8e | |
parent | 725f04b0e1dde00890ef3b6cceb83b15ce0a5a16 (diff) | |
download | openttd-d039d332ecbb96186249208e5692f900ef2ec07e.tar.xz |
(svn r4613) - NewGRF: fix two struct declarations
-rw-r--r-- | newgrf_station.h | 4 |
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. |