(svn r11815) -Codechange (r11802): some compilers were giving a false warning about uninitialized variable

pull/155/head
smatz 17 years ago
parent c4ad3c648b
commit 81b3635c80

@ -462,15 +462,13 @@ static bool UpdateSignalsInBuffer()
Owner owner = OWNER_NONE; // owner whose signals we are updating
while (!_globset.IsEmpty()) {
TileIndex tile;
DiagDirection dir;
while (_globset.Get(&tile, &dir)) {
assert(_tbuset.IsEmpty());
assert(_tbdset.IsEmpty());
TileIndex tile;
DiagDirection dir;
_globset.Get(&tile, &dir);
/* After updating signal, data stored are always MP_RAILWAY with signals.
* Other situations happen when data are from outside functions -
* modification of railbits (including both rail building and removal),

Loading…
Cancel
Save