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 | |
| parent | Add Gen 3 disassemblies. (diff) | |
| download | pokeyellow-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.asm | 2 | ||||
| -rw-r--r-- | home/predef.asm | 2 |
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 |
