Debug: Add sprite dump button to industry/station tile debug windows

This commit is contained in:
Jonathan G Rennison
2022-05-30 00:26:52 +01:00
parent b102e912b3
commit 74eaa77538
2 changed files with 22 additions and 0 deletions

View File

@@ -695,3 +695,8 @@ void DumpIndustrySpriteGroup(const IndustrySpec *spec, std::function<void(const
{
DumpSpriteGroup(spec->grf_prop.spritegroup[0], std::move(print));
}
void DumpIndustryTileSpriteGroup(const IndustryTileSpec *spec, std::function<void(const char *)> print)
{
DumpSpriteGroup(spec->grf_prop.spritegroup[0], std::move(print));
}