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
Binary file modified patches/ips/savestate.ips
Binary file not shown.
5 changes: 5 additions & 0 deletions patches/src/savestate.asm
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ post_load_state:
{
JSR post_load_music

; Mark the savestate as existing and consume Limited mode's save opportunity
LDA !savestate_state
ORA #!savestate_exists_mask|!savestate_save_used_mask
STA !savestate_state

; If sounds are not enabled, the game won't clear the sounds
LDA !DISABLE_SOUNDS : PHA
STZ !DISABLE_SOUNDS
Expand Down
Loading