Changeset - r1742:f190216d655f
[Not reviewed]
master
0 1 0
Darkvater - 19 years ago 2005-05-02 16:02:24
darkvater@openttd.org
(svn r2246) - CodeChange: Station is 'st' not 'station' - random commit of the day
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
station.h
Show inline comments
 
@@ -297,9 +297,9 @@ static inline bool IsRoadStationTile(uin
 
/**
 
 * 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
0 comments (0 inline, 0 general)