summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2024-12-25 16:19:36 -0800
committerGitHub <noreply@github.com>2024-12-26 11:19:36 +1100
commit602053c349e25775f9a0111f61f1feadb4255e63 (patch)
tree7e9e076058e0aed4bc06d8a3e48706ceff3aed0b /src/code
parentcb6a10208c43f8b64dab7d34c14ac756c9e78cc8 (diff)
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
Diffstat (limited to 'src/code')
-rw-r--r--src/code/z_parameter.c4
1 files changed, 2 insertions, 2 deletions
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;
}