Necessary ROM Fixes

- Changed Inverted MSU-1 to trigger opposite world track changes
- Fixed mirror portal issue in Inverted
- Fixed TR Peg Puzzle issue
This commit is contained in:
codemann8
2022-07-31 22:35:00 -05:00
parent 2c9efecd38
commit 57209296e8
3 changed files with 5 additions and 5 deletions

2
Rom.py
View File

@@ -38,7 +38,7 @@ from source.dungeon.RoomList import Room0127
JAP10HASH = '03a63945398191337e896e5771f77173' JAP10HASH = '03a63945398191337e896e5771f77173'
RANDOMIZERBASEHASH = '0574a782e225a87b90637db0847c5ae0' RANDOMIZERBASEHASH = '92a390672efafb652774c1514ac66c4b'
class JsonRom(object): class JsonRom(object):

View File

@@ -270,11 +270,11 @@ OWMirrorSpriteRestore:
} }
OWLightWorldOrCrossed: OWLightWorldOrCrossed:
{ {
lda.l OWMode+1 : and.b #!FLAG_OW_CROSSED : beq + lda.l OWMode+1 : and.b #!FLAG_OW_CROSSED : beq ++
lda.l InvertedMode : beq + lda.l InvertedMode : beq +
lda #$40 : rtl lda #$40
+ lda #$00 : rtl + rtl
+ jsl OWWorldCheck : rtl ++ jsl OWWorldCheck : rtl
} }
OWFluteCancel: OWFluteCancel:

Binary file not shown.