1
0
Fork 0

(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)

release/0.5
Darkvater 2006-10-21 23:00:27 +00:00
parent e550bccf15
commit 5d31cb19d4
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ static bool TileBelongsToRailStation(const Station *st, TileIndex tile)
static void MarkStationTilesDirty(const Station *st) static void MarkStationTilesDirty(const Station *st)
{ {
TileIndex tile = st->train_tile; TileIndex tile = st->train_tile;
uint w, h; int w, h;
// XXX No station is recorded as 0, not INVALID_TILE... // XXX No station is recorded as 0, not INVALID_TILE...
if (tile == 0) return; if (tile == 0) return;