diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2024-12-25 16:19:36 -0800 |
|---|---|---|
| committer | Eblo <7004497+Eblo@users.noreply.github.com> | 2025-09-16 18:18:14 -0400 |
| commit | 8d25087cd9830cb4738fb7a3eabcc066db435930 (patch) | |
| tree | a1c04ef23b1a7c8be6ee3908436a74b5d3dce14a /mm/src/code | |
| parent | d9dca2782817b59393f7db4bd16e7371ab08d313 (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 'mm/src/code')
| -rw-r--r-- | mm/src/code/z_parameter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/src/code/z_parameter.c b/mm/src/code/z_parameter.c index cc52db12a..5ad5b7343 100644 --- a/mm/src/code/z_parameter.c +++ b/mm/src/code/z_parameter.c @@ -3480,7 +3480,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; } @@ -3495,7 +3495,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; } |
