(svn r4613) - NewGRF: fix two struct declarations
authorpeter1138
Fri, 28 Apr 2006 21:32:59 +0000
changeset 3688 c3bc748056d0
parent 3687 109ec5cdb932
child 3689 db67c356f44b
(svn r4613) - NewGRF: fix two struct declarations
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.