1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 22:34:33 +01:00

Fix #4108: Assertion an crash at startup

This commit is contained in:
Ted John
2016-07-16 15:32:53 +01:00
parent 57e790eba4
commit be4668ee3a

View File

@@ -56,7 +56,7 @@ static bool AllocatedListContains(uint32 baseImageId, uint32 count)
static uint32 AllocateImageList(uint32 count)
{
Guard::Assert(count == 0, GUARD_LINE);
Guard::Assert(count != 0, GUARD_LINE);
if (!_initialised)
{