summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2018-11-20 13:17:30 +0800
committernullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2018-11-20 15:04:02 +0800
commitc7045ae3694f677b634f3908c1ea935c2998727e (patch)
treeb4aa509751cfa3d71897ae9442c39875db8cbc21 /include
parentf4ef62bb4134498a4b4a9c4d61b99bda24c98680 (diff)
Identify, split, decompile m4a, and more
ResetSprites, gCharMemCursor, gSpriteCount; analysed subheaps; identified more file pointers
Diffstat (limited to 'include')
-rw-r--r--include/memory.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/memory.h b/include/memory.h
index 99b03e0..4b1e587 100644
--- a/include/memory.h
+++ b/include/memory.h
@@ -26,7 +26,7 @@ struct HeapFreeListElement
struct HeapDescriptor
{
u32 unk0;
- u32 unk4;
+ struct HeapDescriptor *parentHeap;
struct HeapFreeListElement *freeList;
s32 freeCount;
u32 freeListLength;
@@ -51,6 +51,6 @@ void MemoryCopy32(u32 *dest, u32 *src, s32 size);
void InitHeapInternal(void);
void DoInitHeap(struct HeapDescriptor *, struct HeapSettings *, struct HeapFreeListElement *, u32);
-void InitSubHeap(struct HeapDescriptor *, struct HeapFreeListElement *, u32);
+void InitSubHeap(struct HeapDescriptor *, struct HeapMemoryBlock *, u32);
-#endif // GUARD_MEMORY_H \ No newline at end of file
+#endif // GUARD_MEMORY_H