Codechange: Make the simple Malloc sprite allocator globally usable.

This commit is contained in:
Michael Lutz
2021-01-16 16:43:31 +01:00
parent 70aa3b4011
commit 6776229047
6 changed files with 13 additions and 11 deletions

View File

@@ -808,6 +808,14 @@ static void *AllocSprite(size_t mem_req)
}
}
/**
* Sprite allocator simply using malloc.
*/
void *SimpleSpriteAlloc(size_t size)
{
return MallocT<byte>(size);
}
/**
* Handles the case when a sprite of different type is requested than is present in the SpriteCache.
* For ST_FONT sprites, it is normal. In other cases, default sprite is loaded instead.