# HG changeset patch # User peter1138 # Date 1146259979 0 # Node ID c3bc748056d0faa404135897c34e04b7b31bc9ff # Parent 109ec5cdb932f3e905c7d131d5df7e061af079ed (svn r4613) - NewGRF: fix two struct declarations diff -r 109ec5cdb932 -r c3bc748056d0 newgrf_station.h --- a/newgrf_station.h Fri Apr 28 20:48:45 2006 +0000 +++ b/newgrf_station.h Fri Apr 28 21:32:59 2006 +0000 @@ -17,7 +17,7 @@ * 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 @@ /** * 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.