* Is there a custom road stop spec on this tile? * @param t Tile to query * @pre IsAnyRoadStopTile(t) * @return True if this station is part of a newgrf station. */
| 652 | * @return True if this station is part of a newgrf station. |
| 653 | */ |
| 654 | inline bool IsCustomRoadStopSpecIndex(Tile t) |
| 655 | { |
| 656 | assert(IsAnyRoadStopTile(t)); |
| 657 | return GB(t.m8(), 0, 6) != 0; |
| 658 | } |
| 659 | |
| 660 | /** |
| 661 | * Set the custom road stop spec for this tile. |
no test coverage detected