diff options
| author | Pepe20129 <72659707+Pepe20129@users.noreply.github.com> | 2024-11-12 01:46:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-11 17:46:25 -0700 |
| commit | ffc132a01bc73e8e7eea826dcdfc07b742abbe12 (patch) | |
| tree | 2e2eae75d11d78ba1a33be5e0c655e0bd6adf6cd /soh/src/code/z_malloc.c | |
| parent | f12a2bbbb7f6201a0bc8787d23cd446a1a2b4d48 (diff) | |
Clean `__osMalloc.c` (#4351)
* Remove #ifs
* Add `NODE_IS_VALID`
* Fix current macros
* `NODE_GET_NEXT` & `NODE_GET_PREV`
* Add macros
* Use macros and general cleanup
* Fix build (hopefully)
* Address review
Diffstat (limited to 'soh/src/code/z_malloc.c')
| -rw-r--r-- | soh/src/code/z_malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/z_malloc.c b/soh/src/code/z_malloc.c index acd4429c0..a44c1e47d 100644 --- a/soh/src/code/z_malloc.c +++ b/soh/src/code/z_malloc.c @@ -106,5 +106,5 @@ void ZeldaArena_Cleanup() { } u8 ZeldaArena_IsInitalized() { - return __osMallocIsInitalized(&sZeldaArena); + return __osMallocIsInitialized(&sZeldaArena); } |
