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 | 5e140bd7bca5e3657fe5d050cd0a147eb4dde733 (patch) | |
tree | 6f6f4de694a519ce62f5ded8e5004c9581d3c249 | |
parent | fcd2af4643b4a68e175243f31cc88cea26f2bf4e (diff) | |
download | openttd-5e140bd7bca5e3657fe5d050cd0a147eb4dde733.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; |