1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-03-29 16:59:35 +01:00

fix mistake in location of return

This commit is contained in:
YamaArashi 2016-01-03 19:19:38 -08:00
parent c013862b69
commit bc8a55565b

@ -79,9 +79,9 @@ void *AllocInternal(void *heapStart, u32 size)
if (splitBlock->next != head)
splitBlock->next->prev = splitBlock;
return pos->data;
}
return pos->data;
}
}