diff options
| author | Daniel Harding <corrnondacqb@yahoo.com> | 2017-09-26 12:02:00 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-26 12:02:00 -0500 |
| commit | dcbeb6b641f97a7840ad18c76e3aec1089d184d5 (patch) | |
| tree | 9ade0c53b1a5e11e059e7be6d44e35eb13e6c4f5 /engine/menu | |
| parent | Add Gen 3 disassemblies. (diff) | |
| parent | Fix warnings about deprecated mnemonics on newer builds of rgbds (diff) | |
| download | pokeyellow-dcbeb6b641f97a7840ad18c76e3aec1089d184d5.tar.gz pokeyellow-dcbeb6b641f97a7840ad18c76e3aec1089d184d5.tar.xz pokeyellow-dcbeb6b641f97a7840ad18c76e3aec1089d184d5.zip | |
Merge pull request #26 from Pokechu22/mnemonic-warnings
Fix warnings about deprecated mnemonics on newer builds of rgbds
Diffstat (limited to 'engine/menu')
| -rwxr-xr-x | engine/menu/start_sub_menus.asm | 2 | ||||
| -rw-r--r-- | engine/menu/text_ids2.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/menu/start_sub_menus.asm b/engine/menu/start_sub_menus.asm index f3ba8207..a93fb2e3 100755 --- a/engine/menu/start_sub_menus.asm +++ b/engine/menu/start_sub_menus.asm @@ -118,7 +118,7 @@ StartMenu_Pokemon: ld h,[hl] ld l,a ld a,[wObtainedBadges] ; badges obtained - jp [hl] + jp hl .outOfBattleMovePointers dw .cut dw .fly diff --git a/engine/menu/text_ids2.asm b/engine/menu/text_ids2.asm index e23ae707..b22c9507 100644 --- a/engine/menu/text_ids2.asm +++ b/engine/menu/text_ids2.asm @@ -24,7 +24,7 @@ DisplayTextBoxID_: ld l,a ; hl = address of function ld de,.done push de - jp [hl] ; jump to the function + jp hl ; jump to the function .coordTableMatch call GetTextBoxIDCoords call GetAddressOfScreenCoords |
