From d7a6b26c3967677dc2c163e583ad9a5acd34ee11 Mon Sep 17 00:00:00 2001 From: celestar Date: Thu, 30 Mar 2006 10:53:31 +0000 Subject: [PATCH] (svn r4168) -Fix: Fixed a typo in previous commit --- station_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/station_map.h b/station_map.h index 0fb8c50b06..768cabc196 100644 --- a/station_map.h +++ b/station_map.h @@ -148,7 +148,7 @@ static inline Track GetRailStationTrack(TileIndex t) static inline DiagDirection GetDockDirection(TileIndex t) { assert(IsTileType(t, MP_STATION)); - assert(_m[t].m5 > DOCK_BASE_WATER_PART); + assert(_m[t].m5 < DOCK_BASE_WATER_PART); return (DiagDirection)(_m[t].m5 - DOCK_BASE); }