mirror of https://github.com/OpenTTD/OpenTTD
(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)
parent
e550bccf15
commit
5d31cb19d4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue