* Compute hash for tile coordinate. */
| 419 | * Compute hash for tile coordinate. |
| 420 | */ |
| 421 | static inline uint GetTileHash(uint x, uint y) |
| 422 | { |
| 423 | return ComposeTileHash(GetTileHash1D(x), GetTileHash1D(y)); |
| 424 | } |
| 425 | |
| 426 | static std::array<Vehicle *, TOTAL_TILE_HASH_SIZE> _vehicle_tile_hash{}; |
| 427 |
no test coverage detected