From 2e18eb334bad77db0625549c62849333705214b8 Mon Sep 17 00:00:00 2001 From: Dragorn421 Date: Tue, 30 Aug 2022 23:35:00 +0200 Subject: Fix misc 16 (#1371) * Replace tabs in exceptasm.s source * Replace tabs with \t in strings * Fix grammar in various comments * Fix "initalize" typos in code * (fix typo) `__osMallocIsInitalized` -> `__osMallocIsInitialized` * Some Link -> Player * Use `EXCH_ITEM_` more * "bgm music" -> "background music" * Fix typos in `place_title_cards.xml` * `SkelAnime_Update` returns a boolean * Run formatter --- src/code/system_malloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/code/system_malloc.c') diff --git a/src/code/system_malloc.c b/src/code/system_malloc.c index d9085c12f..f62e5639a 100644 --- a/src/code/system_malloc.c +++ b/src/code/system_malloc.c @@ -105,6 +105,6 @@ void SystemArena_Cleanup(void) { __osMallocCleanup(&gSystemArena); } -u8 SystemArena_IsInitalized(void) { - return __osMallocIsInitalized(&gSystemArena); +u8 SystemArena_IsInitialized(void) { + return __osMallocIsInitialized(&gSystemArena); } -- cgit v1.2.3