summaryrefslogtreecommitdiff
path: root/src/station.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-01-17 21:14:17 +0000
committertron <tron@openttd.org>2007-01-17 21:14:17 +0000
commit3d1735fcfd5e3158bef0ea82b47b265c464107bb (patch)
treeaf04f21cea303100c3a5905accfde29ee18ee33a /src/station.h
parent27dde23409f9955a99fd904d2b9944380124a7e2 (diff)
downloadopenttd-3d1735fcfd5e3158bef0ea82b47b265c464107bb.tar.xz
(svn r8207) -Fix
Remove the write-only attribute RoadStop::station
Diffstat (limited to 'src/station.h')
-rw-r--r--src/station.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/station.h b/src/station.h
index d7f6246f6..7d0ec21fa 100644
--- a/src/station.h
+++ b/src/station.h
@@ -50,13 +50,12 @@ typedef struct RoadStop {
byte status;
RoadStopID index;
byte num_vehicles;
- StationID station;
struct RoadStop *next;
struct RoadStop *prev;
static const int cDebugCtorLevel = 3;
- RoadStop(TileIndex tile, StationID index);
+ RoadStop(TileIndex tile);
~RoadStop();
void *operator new (size_t size);