Standardize on JML for long jumps (instead of JMP.l)

This commit is contained in:
Kevin Cathcart
2018-04-21 22:12:51 -04:00
parent 6bbf37110c
commit edb3cbaaeb
7 changed files with 26 additions and 26 deletions

View File

@@ -27,12 +27,12 @@ RTS
SmithDoorCheck:
LDA.l SmithTravelsFreely : AND.w #$00FF : BEQ .orig
;If SmithTravelsFreely is set Frog/Smith can enter multi-entrance overworld doors
JMP.l Overworld_Entrance_BRANCH_RHO
JML.l Overworld_Entrance_BRANCH_RHO
.orig ; The rest is equivlent to what we overwrote
CPX.w #$0076 : !BGE +
JMP.l Overworld_Entrance_BRANCH_LAMBDA
JML.l Overworld_Entrance_BRANCH_LAMBDA
+
JMP.l Overworld_Entrance_BRANCH_RHO
JML.l Overworld_Entrance_BRANCH_RHO
;--------------------------------------------------------------------------------