Add: Mock sprite cache intialization.

This fills up the sprite cache with SPR_OPENTTD_BASE + OPENTTD_SPRITE_COUNT zero-size sprites, to
allow GetSpriteSize() calls to continue from unit-tests.
This commit is contained in:
2023-11-02 15:06:56 +00:00
committed by Peter Nelson
parent 05436d9c2f
commit 1c94fb0389
5 changed files with 68 additions and 2 deletions

View File

@@ -36,6 +36,7 @@ static inline bool IsMapgenSpriteID(SpriteID sprite)
return IsInsideMM(sprite, SPR_MAPGEN_BEGIN, SPR_MAPGEN_END);
}
void *AllocSprite(size_t mem_req);
SpriteCache *AllocateSpriteCache(uint index);
#endif /* SPRITECACHE_INTERNAL_H */