Fix types and aarch

This commit is contained in:
dbalatoni13 2025-04-03 23:11:54 +02:00
parent bf958a1f29
commit 8000ff491a
3 changed files with 9 additions and 9 deletions

View file

@ -13,10 +13,10 @@ struct memory_block {
struct memory_block *prev;
struct memory_block *next;
u32 num;
u32 retaddr;
size_t retaddr;
};
static void *HuMemMemoryAlloc2(void *heap_ptr, s32 size, u32 num, u32 retaddr);
static void *HuMemMemoryAlloc2(void *heap_ptr, s32 size, u32 num, size_t retaddr);
void *HuMemHeapInit(void *ptr, s32 size)
{