diff --git a/src/spritecache.h b/src/spritecache.h --- a/src/spritecache.h +++ b/src/spritecache.h @@ -44,13 +44,13 @@ uint GetSpriteCountForFile(const std::st uint GetMaxSpriteID(); -static inline const Sprite *GetSprite(SpriteID sprite, SpriteType type) +inline const Sprite *GetSprite(SpriteID sprite, SpriteType type) { assert(type != SpriteType::Recolour); return (Sprite*)GetRawSprite(sprite, type); } -static inline const byte *GetNonSprite(SpriteID sprite, SpriteType type) +inline const byte *GetNonSprite(SpriteID sprite, SpriteType type) { assert(type == SpriteType::Recolour); return (byte*)GetRawSprite(sprite, type);