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 /home/overworld.asm | |
parent | 1ce6731d98388ecacf94036cd26d0125eebbb943 (diff) |
Fix warnings about deprecated mnemonics on newer builds of rgbds
Diffstat (limited to 'home/overworld.asm')
-rw-r--r-- | home/overworld.asm | 2 |
1 files changed, 1 insertions, 1 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 |