| 31 | |
| 32 | |
| 33 | static int GetSlopePixelZ_Void(TileIndex, uint x, uint y, bool) |
| 34 | { |
| 35 | /* This function may be called on tiles outside the map, don't assume |
| 36 | * that 'tile' is a valid tile index. See GetSlopePixelZOutsideMap. */ |
| 37 | auto [tileh, z] = GetTilePixelSlopeOutsideMap(x >> 4, y >> 4); |
| 38 | |
| 39 | return z + GetPartialPixelZ(x & 0xF, y & 0xF, tileh); |
| 40 | } |
| 41 | |
| 42 | static Foundation GetFoundation_Void(TileIndex, Slope) |
| 43 | { |
nothing calls this directly
no test coverage detected