From bc7f5e5099d64d5f504de7355e2a0fbb3f3ccdc2 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 2 May 2005 16:02:24 +0000 Subject: (svn r2246) - CodeChange: Station is 'st' not 'station' - random commit of the day --- station.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'station.h') diff --git a/station.h b/station.h index d771ac2f4..6252c4328 100644 --- a/station.h +++ b/station.h @@ -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 -- cgit v1.2.3-54-g00ecf