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
9 changes: 7 additions & 2 deletions src/fanfare.asm
Original file line number Diff line number Diff line change
Expand Up @@ -356,14 +356,19 @@ hook_unpause_play_sound:

hook_end_fanfare:
{
; save answer
PHA
LDA !sram_healthalarm : CMP #$0004 : BNE .done_health_alarm
LDA #$0002 : JSL $80914D
.done_health_alarm
; initialize water physics in case we just collected gravity or space jump
JSL init_physics_ram
; restore answer
PLA
; original logic
PLY : PLX
PLB : PLP
; initialize water physics in case we just collected gravity or space jump
JML init_physics_ram
RTL
}

%endfree(85)
Expand Down
2 changes: 1 addition & 1 deletion src/main.asm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lorom
!VERSION_MAJOR = 2
!VERSION_MINOR = 7
!VERSION_BUILD = 1
!VERSION_REV = 1
!VERSION_REV = 2

table ../resources/normal.tbl
print ""
Expand Down
1 change: 1 addition & 0 deletions web/data/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Add bootless up in two room strat, and kraid arm and mouth hitboxes (2.7.1)
- Workaround audio popping issue with music off by muting track 4 and playing it instead of nothing (2.7.1)
- Corrections for KPDR 25% presets (2.7.1.1)
- Fix save stations so when you skip save or select no then save is skipped (2.7.1.2)

# Version 2.6.x
- Optimize kraid rock projectiles to reduce lag when Kraid rises (2.6.0)
Expand Down
2 changes: 1 addition & 1 deletion web/data/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Super Metroid Practice Hack",
"version": "2.7.1.1",
"version": "2.7.1.2",
"variants": ["NTSC", "PAL"],
"base": {
"NTSC": {
Expand Down