aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2017-09-25 19:18:33 -0700
committerPokechu22 <Pokechu022@gmail.com>2017-09-25 19:18:33 -0700
commit78b6f1a613913536789fe1bcc91b95d6cca54ae9 (patch)
tree9ade0c53b1a5e11e059e7be6d44e35eb13e6c4f5 /home
parentAdd Gen 3 disassemblies. (diff)
downloadpokeyellow-78b6f1a613913536789fe1bcc91b95d6cca54ae9.tar.gz
pokeyellow-78b6f1a613913536789fe1bcc91b95d6cca54ae9.tar.xz
pokeyellow-78b6f1a613913536789fe1bcc91b95d6cca54ae9.zip
Fix warnings about deprecated mnemonics on newer builds of rgbds
Diffstat (limited to 'home')
-rw-r--r--home/overworld.asm2
-rw-r--r--home/predef.asm2
2 files changed, 2 insertions, 2 deletions
diff --git a/home/overworld.asm b/home/overworld.asm
index 382f90f9..29e4f18d 100644
--- a/home/overworld.asm
+++ b/home/overworld.asm
@@ -1761,7 +1761,7 @@ RunMapScript::
ld l, a
ld de, .return
push de
- jp [hl] ; jump to script
+ jp hl ; jump to script
.return
ret
diff --git a/home/predef.asm b/home/predef.asm
index c55760d7..dfa10772 100644
--- a/home/predef.asm
+++ b/home/predef.asm
@@ -23,7 +23,7 @@ Predef::
ld de, .done
push de
- jp [hl]
+ jp hl
.done
pop af