Skip to content

Commit

Permalink
otherRotation: fix missing romhack changes in AP
Browse files Browse the repository at this point in the history
  • Loading branch information
strotlog committed Nov 26, 2023
1 parent 5ec2c0d commit 685a1fd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,16 @@
if (hackname == 'rotation') {
localpatches = romhacks.rotation.patchmain({hasRoms: false})

if (checkForOverlappingPatches(localpatches)) {
return -1
}
localpatches = assembleUnambiguousInstructions(localpatches)
if (localpatches.length === 0) {
return -1
}
} else if (hackname == 'otherRotation') {
localpatches = romhacks.otherRotation.patchmain({hasRoms: false})

if (checkForOverlappingPatches(localpatches)) {
return -1
}
Expand Down

0 comments on commit 685a1fd

Please sign in to comment.