diff options
author | Darkvater <darkvater@openttd.org> | 2005-05-02 16:02:24 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2005-05-02 16:02:24 +0000 |
commit | ab0a6f2e735dc6b6f047fad0e7a009a14c245bd3 (patch) | |
tree | 65f3b96703a2ee49e15b7937e7f99290ba252dfb | |
parent | 57dbe50597bb9c3b202bc07841f0c39820277045 (diff) | |
download | openttd-ab0a6f2e735dc6b6f047fad0e7a009a14c245bd3.tar.xz |
(svn r2246) - CodeChange: Station is 'st' not 'station' - random commit of the day
-rw-r--r-- | station.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -297,9 +297,9 @@ static inline bool IsRoadStationTile(uint tile) { /** * Check if a station really exists. */ -static inline bool IsValidStation(const Station* station) +static inline bool IsValidStation(const Station *st) { - return station->xy != 0; /* XXX: Replace by INVALID_TILE someday */ + return st->xy != 0; /* XXX: Replace by INVALID_TILE someday */ } /* Get's the direction the station exit points towards. Ie, returns 0 for a |