From 5d31cb19d41db684c6bb234db049e5668c7592e9 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 21 Oct 2006 23:00:27 +0000 Subject: [PATCH] (svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138) --- station_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/station_cmd.c b/station_cmd.c index 73a8c7f1c2..c0a40892a2 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -93,7 +93,7 @@ static bool TileBelongsToRailStation(const Station *st, TileIndex tile) static void MarkStationTilesDirty(const Station *st) { TileIndex tile = st->train_tile; - uint w, h; + int w, h; // XXX No station is recorded as 0, not INVALID_TILE... if (tile == 0) return;