Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/mars_patcher/mf/constants/reserved_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ class ReservedConstantsMF:
REVEAL_HIDDEN_TILES_ADDR = 0x7FF02C
TITLESCREEN_TEXT_POINTERS_POINTER_ADDR = 0x7FF030
DEFAULT_STEREO_FLAG_POINTER_ADDR = 0x7FF034
INSTANT_MORPH_FLAG_POINTER_ADDR = 0x7FF038
2 changes: 1 addition & 1 deletion src/mars_patcher/mf/misc_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ def apply_accessibility_patch(rom: Rom) -> None:


def apply_instant_unmorph_patch(rom: Rom) -> None:
apply_patch_in_asm_path(rom, "instant_unmorph.ips")
rom.write_8(rom.read_ptr(ReservedConstantsMF.INSTANT_MORPH_FLAG_POINTER_ADDR), 1)