mirror of https://github.com/OpenTTD/OpenTTD
(svn r11815) -Codechange (r11802): some compilers were giving a false warning about uninitialized variable
parent
79e0a48c42
commit
a4c1280945
|
@ -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…
Reference in New Issue