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
19 changes: 19 additions & 0 deletions src/layout.asm
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,11 @@ hook_layout_asm_pants_to_pants:
dw #$8000
dw #layout_asm_pants_to_pants_scrolls

; Big Boy Room right door
org $83AA36
hook_layout_asm_dusttorizo_door1:
dw #layout_asm_big_boy_music

; Tourian Escape 1 right door
org $83AA96
hook_layout_asm_motherbrain_door1:
Expand Down Expand Up @@ -2475,6 +2480,20 @@ layout_asm_tourianescape1:
RTS
}

layout_asm_big_boy_music:
{
LDA !MUSIC_DATA : CMP #$0045 : BEQ .check_track
TDC : JSL !MUSIC_ROUTINE
LDA #$FF45 : JSL !MUSIC_ROUTINE

.check_track
LDA #$0006 : CMP !MUSIC_TRACK : BEQ .done
JSL !MUSIC_ROUTINE

.done
RTS
}

layout_asm_ceres_ridley_state_check:
{
LDA !TIMER_STATUS : BEQ .noTimer
Expand Down
2 changes: 1 addition & 1 deletion src/main.asm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lorom
!VERSION_MAJOR = 2
!VERSION_MINOR = 7
!VERSION_BUILD = 3
!VERSION_REV = 0
!VERSION_REV = 1

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 @@ -25,6 +25,7 @@
- Fix page navigation in SuperHUD menu (2.7.2.3)
- Add category adjustment options, and also a few small category preset fixes (2.7.3)
- Add toggle IGT/RTA and Boss HP controller shortcuts, and a couple bonk indicators (2.7.3)
- Force Big Boy room music to be correct prior to baby skip attempt (2.7.3.1)

# 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.3",
"version": "2.7.3.1",
"variants": ["NTSC", "PAL"],
"base": {
"NTSC": {
Expand Down
Loading