| 635 | } |
| 636 | |
| 637 | static void AnimatePlasticFountain(TileIndex tile, IndustryGfx gfx) |
| 638 | { |
| 639 | gfx = (gfx < GFX_PLASTIC_FOUNTAIN_ANIMATED_8) ? gfx + 1 : GFX_PLASTIC_FOUNTAIN_ANIMATED_1; |
| 640 | SetIndustryGfx(tile, gfx); |
| 641 | MarkTileDirtyByTile(tile); |
| 642 | } |
| 643 | |
| 644 | static void AnimateOilWell(TileIndex tile, IndustryGfx gfx) |
| 645 | { |
no test coverage detected