* * rct2: 0x006A76E9 */
| 930 | * rct2: 0x006A76E9 |
| 931 | */ |
| 932 | void FootpathQueueChainPush(RideId rideIndex) |
| 933 | { |
| 934 | if (!rideIndex.IsNull()) |
| 935 | { |
| 936 | auto* lastSlot = _footpathQueueChain + std::size(_footpathQueueChain) - 1; |
| 937 | if (_footpathQueueChainNext <= lastSlot) |
| 938 | { |
| 939 | *_footpathQueueChainNext++ = rideIndex; |
| 940 | } |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | /** |
| 945 | * |
no test coverage detected