diff options
author | Pokechu22 <Pokechu022@gmail.com> | 2017-09-25 19:18:33 -0700 |
---|---|---|
committer | Pokechu22 <Pokechu022@gmail.com> | 2017-09-25 19:18:33 -0700 |
commit | 78b6f1a613913536789fe1bcc91b95d6cca54ae9 (patch) | |
tree | 9ade0c53b1a5e11e059e7be6d44e35eb13e6c4f5 /engine/overworld | |
parent | 1ce6731d98388ecacf94036cd26d0125eebbb943 (diff) |
Fix warnings about deprecated mnemonics on newer builds of rgbds
Diffstat (limited to 'engine/overworld')
-rw-r--r-- | engine/overworld/check_player_state.asm | 2 | ||||
-rwxr-xr-x | engine/overworld/ssanne.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/overworld/check_player_state.asm b/engine/overworld/check_player_state.asm index b1951de0..b3eab447 100644 --- a/engine/overworld/check_player_state.asm +++ b/engine/overworld/check_player_state.asm @@ -105,7 +105,7 @@ IsPlayerFacingEdgeOfMap: ld c, a ld de, .returnaddress push de - jp [hl] + jp hl .returnaddress pop bc pop de diff --git a/engine/overworld/ssanne.asm b/engine/overworld/ssanne.asm index 347dc459..dc4ad130 100755 --- a/engine/overworld/ssanne.asm +++ b/engine/overworld/ssanne.asm @@ -17,7 +17,7 @@ AnimateBoulderDust: ld bc, .returnAddress push bc ld c, 4 - jp [hl] + jp hl .returnAddress ld a, [rOBP1] xor %01100100 |