| 977 | } |
| 978 | |
| 979 | void DrawShipDepotSprite(int x, int y, Axis axis, DepotPart part) |
| 980 | { |
| 981 | const DrawTileSprites &dts = _shipdepot_display_data[axis][to_underlying(part)]; |
| 982 | |
| 983 | DrawSprite(dts.ground.sprite, dts.ground.pal, x, y); |
| 984 | DrawOrigTileSeqInGUI(x, y, &dts, GetCompanyPalette(_local_company)); |
| 985 | } |
| 986 | |
| 987 | |
| 988 | static int GetSlopePixelZ_Water(TileIndex tile, uint x, uint y, bool) |
no test coverage detected