From 9e2726606b6fea42f53e753af2c3a0a477576683 Mon Sep 17 00:00:00 2001 From: Arceveti <73617174+Arceveti@users.noreply.github.com> Date: Thu, 30 Sep 2021 14:04:09 -0700 Subject: [PATCH] fix funny typo --- src/game/level_update.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/game/level_update.c b/src/game/level_update.c index 7dd7ba66..c34a9e14 100644 --- a/src/game/level_update.c +++ b/src/game/level_update.c @@ -1080,9 +1080,11 @@ void level_set_transition(s16 length, void (*updateFunction)(s16 *)) { * Play the transition and then return to normal play mode. */ s32 play_mode_change_area(void) { - // sm64ex-axo + // sm64ex-alo // Change function to have similar change_level defines - if (sTransitionUpdate != NULL) sTransitionUpdate(&sTransitionTimer); + if (sTransitionUpdate != NULL) { + sTransitionUpdate(&sTransitionTimer); + } if (--sTransitionTimer == -1) { update_camera(gCurrentArea->camera); sTransitionTimer = 0; @@ -1129,7 +1131,7 @@ UNUSED static s32 play_mode_unused(void) { } } - return 0; + return FALSE; } s32 update_level(void) {