diff options
author | Darkvater <darkvater@openttd.org> | 2006-10-21 23:00:27 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-10-21 23:00:27 +0000 |
commit | 5d31cb19d41db684c6bb234db049e5668c7592e9 (patch) | |
tree | 6f6f4de694a519ce62f5ded8e5004c9581d3c249 | |
parent | e550bccf15bb423f135e4a3c07aae9f29a53207a (diff) | |
download | openttd-5d31cb19d41db684c6bb234db049e5668c7592e9.tar.xz |
(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)
-rw-r--r-- | station_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/station_cmd.c b/station_cmd.c index 73a8c7f1c..c0a40892a 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; |