Fixed missing OW flag check changes

This commit is contained in:
codemann8
2021-08-19 18:47:29 -05:00
parent ad8c4e8e70
commit 94a987f23f
3 changed files with 6 additions and 6 deletions

View File

@@ -204,7 +204,7 @@ RTL
AnimatedEntranceFix: ;when an entrance animation tries to start
PHA : PHX
LDA.l InvertedMode : BEQ + ;If we are in inverted mode
LDA.l OWMode+1 : CMP #$01 : BEQ + ;If we are in Mixed OW shuffle mode
LDA.l OWMode+1 : CMP #$04 : BEQ + ;If we are in Mixed OW shuffle mode
LDA $8A : AND #$40 : BNE + ;and in the light world
PLX : PLA
STZ $04C6 ; skip it.

View File

@@ -61,7 +61,7 @@ FluteBoy:
JML.l FluteBoy_Continue
;--------------------------------------------------------------------------------
FreeDuckCheck:
LDA.l OWMode+1 : CMP.b #$01 : BEQ .skipInvertedCheck
LDA.l OWMode+1 : CMP.b #$04 : BEQ .skipInvertedCheck
LDA.l InvertedMode : BEQ .done
.skipInvertedCheck