| 1580 | } |
| 1581 | |
| 1582 | static void ViewportDrawTileSprites(const TileSpriteToDrawVector *tstdv) |
| 1583 | { |
| 1584 | for (const TileSpriteToDraw &ts : *tstdv) { |
| 1585 | DrawSpriteViewport(ts.image, ts.pal, ts.x, ts.y, ts.sub); |
| 1586 | } |
| 1587 | } |
| 1588 | |
| 1589 | /** This fallback sprite checker always exists. */ |
| 1590 | static bool ViewportSortParentSpritesChecker() |
no test coverage detected