From 4ad80ae872fe2eea09d431a1d9849936ac37223b Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 9 May 2005 19:56:08 +0000 Subject: [PATCH] (svn r2287) - Fix (regression): cast stationcount to unsigned instead of p1 to signed when checking valid waypoint types. Thanks for pointing it out Tron --- waypoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waypoint.c b/waypoint.c index 4d5225b61b..dd6750fe12 100644 --- a/waypoint.c +++ b/waypoint.c @@ -163,7 +163,7 @@ int32 CmdBuildTrainWaypoint(int x, int y, uint32 flags, uint32 p1, uint32 p2) SET_EXPENSES_TYPE(EXPENSES_CONSTRUCTION); /* if custom gfx are used, make sure it is within bounds */ - if ((int)p1 > 0x100 + GetCustomStationsCount(STAT_CLASS_WAYP)) return CMD_ERROR; + if (p1 > 0x100 + (uint)GetCustomStationsCount(STAT_CLASS_WAYP)) return CMD_ERROR; if (!IsTileType(tile, MP_RAILWAY) || ((dir = 0, _map5[tile] != 1) && (dir = 1, _map5[tile] != 2))) return_cmd_error(STR_1005_NO_SUITABLE_RAILROAD_TRACK);