1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 18:07:53 +01:00

Fix #9258: Rename SPRITE_LIST_NULL to ..._FREE (#9260)

This commit is contained in:
Greg Hennis
2019-05-15 13:07:01 -04:00
committed by Michael Steenbeek
parent c9cbe391eb
commit 1fcedae3bc
7 changed files with 18 additions and 18 deletions

View File

@@ -1710,7 +1710,7 @@ static constexpr const uint8_t tshirt_colours[] = {
*/
Peep* Peep::Generate(const CoordsXYZ coords)
{
if (gSpriteListCount[SPRITE_LIST_NULL] < 400)
if (gSpriteListCount[SPRITE_LIST_FREE] < 400)
return nullptr;
Peep* peep = (Peep*)create_sprite(1);