diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2023-10-06 00:19:09 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-06 00:19:09 -0600 |
| commit | 2b74bbbcefe396564a55357eda094fc8c8baf36a (patch) | |
| tree | 02ff798bcacc50d767e033cb2d13cab819e72eee /src/code_800029B0.c | |
| parent | 274fc21ffa271492d1fa231c99fc48a11e3bbed1 (diff) | |
Doc setup_game_memory, label syms, add osSyncPrintf support, match funcs (#444)
* Doc setup_game_memory and label syms
* match func_800132F4
* match func label defines
* fix some fake ptrs
* match more code
* Matches
* Add osSyncPrintf support and matches
* Add func equiv to draw_square and add comment to is_debug
Diffstat (limited to 'src/code_800029B0.c')
| -rw-r--r-- | src/code_800029B0.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code_800029B0.c b/src/code_800029B0.c index cbc1e1cf4..a9179a604 100644 --- a/src/code_800029B0.c +++ b/src/code_800029B0.c @@ -85,11 +85,11 @@ u16 D_8015F702; f32 D_8015F704; Vec3f D_8015F708; UNUSED u32 D_8015F718[3]; // Likely held ptrs to segmented data. -u32 gFreeMemorySize; -u32 gNextFreeMemoryAddress; -u32 gHeapEndPtr; +size_t gFreeMemorySize; +uintptr_t gNextFreeMemoryAddress; +uintptr_t gHeapEndPtr; u32 D_8015F730; -u32 gFreeMemoryResetAnchor; +uintptr_t gFreeMemoryResetAnchor; Vec3f D_8015F738; Vec3f D_8015F748; Vec3f D_8015F758; |
