From 78b6f1a613913536789fe1bcc91b95d6cca54ae9 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Mon, 25 Sep 2017 19:18:33 -0700 Subject: Fix warnings about deprecated mnemonics on newer builds of rgbds --- home/overworld.asm | 2 +- home/predef.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'home') 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 -- cgit v1.3.1-sl0p