* Get the custom road stop spec for this tile. * @param t Tile to query * @pre IsAnyRoadStopTile(t) * @return The custom station spec of this tile. */
| 676 | * @return The custom station spec of this tile. |
| 677 | */ |
| 678 | inline uint GetCustomRoadStopSpecIndex(Tile t) |
| 679 | { |
| 680 | assert(IsAnyRoadStopTile(t)); |
| 681 | return GB(t.m8(), 0, 6); |
| 682 | } |
| 683 | |
| 684 | /** |
| 685 | * Set the random bits for a station tile. |
no test coverage detected