From 602053c349e25775f9a0111f61f1feadb4255e63 Mon Sep 17 00:00:00 2001 From: Derek Hensley Date: Wed, 25 Dec 2024 16:19:36 -0800 Subject: Misc Fixes (#1778) * kaleido_map double parens * ObjUm PostLimbDraw fake match * z_parameter double parens * voice_internal func_801A541C return type * audio load missing return comments * EnTest7_DrawFeathers * EnTest7_UpdateFeathers * format --- src/code/z_parameter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/code') diff --git a/src/code/z_parameter.c b/src/code/z_parameter.c index 7171a661b..4c6ac58e5 100644 --- a/src/code/z_parameter.c +++ b/src/code/z_parameter.c @@ -2161,7 +2161,7 @@ void Interface_UpdateButtonsPart2(PlayState* play) { (GET_CUR_FORM_BTN_ITEM(i) <= ITEM_MASK_GIANT)) && (GET_CUR_FORM_BTN_ITEM(i) != ITEM_PICTOGRAPH_BOX)) { - if ((gSaveContext.buttonStatus[i] == BTN_ENABLED)) { + if (gSaveContext.buttonStatus[i] == BTN_ENABLED) { restoreHudVisibility = true; gSaveContext.buttonStatus[i] = BTN_DISABLED; } @@ -2176,7 +2176,7 @@ void Interface_UpdateButtonsPart2(PlayState* play) { (GET_CUR_FORM_BTN_ITEM(i) <= ITEM_MASK_GIANT)) && (GET_CUR_FORM_BTN_ITEM(i) != ITEM_PICTOGRAPH_BOX)) { - if ((gSaveContext.buttonStatus[i] == BTN_DISABLED)) { + if (gSaveContext.buttonStatus[i] == BTN_DISABLED) { restoreHudVisibility = true; gSaveContext.buttonStatus[i] = BTN_ENABLED; } -- cgit v1.2.3