* Update signals, starting at one side of a tile * Will check tile next to this at opposite side too * * @see UpdateSignalsInBuffer() * @param tile tile where we start * @param side side of tile * @param owner owner whose signals we will update * @return the state of the signal segment */
| 645 | * @return the state of the signal segment |
| 646 | */ |
| 647 | SigSegState UpdateSignalsOnSegment(TileIndex tile, DiagDirection side, Owner owner) |
| 648 | { |
| 649 | assert(_globset.IsEmpty()); |
| 650 | _globset.Add(tile, side); |
| 651 | |
| 652 | return UpdateSignalsInBuffer(owner); |
| 653 | } |
| 654 | |
| 655 | |
| 656 | /** |
no test coverage detected