mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-06-14 06:25:58 -04:00
Restore fd anywhere export functionality (#570)
* fix fd * add comment back in
This commit is contained in:
+2
-1
@@ -1013,7 +1013,8 @@ RECOMP_PATCH void Interface_UpdateButtonsPart2(PlayState* play) {
|
||||
}
|
||||
} else if (GET_CUR_FORM_BTN_ITEM(i) == ITEM_MASK_FIERCE_DEITY) {
|
||||
// Fierce Deity's Mask is equipped
|
||||
if ((play->sceneId != SCENE_MITURIN_BS) && (play->sceneId != SCENE_HAKUGIN_BS) &&
|
||||
// @recomp_use_export_var fd_anywhere: Allow the player to use the Fierce Deity's Mask anywhere if mods enable it.
|
||||
if (!fd_anywhere && (play->sceneId != SCENE_MITURIN_BS) && (play->sceneId != SCENE_HAKUGIN_BS) &&
|
||||
(play->sceneId != SCENE_SEA_BS) && (play->sceneId != SCENE_INISIE_BS) &&
|
||||
(play->sceneId != SCENE_LAST_BS)) {
|
||||
if (gSaveContext.buttonStatus[i] != BTN_DISABLED) {
|
||||
|
||||
Reference in New Issue
Block a user