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/yellow_intro.asm | |
| 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/yellow_intro.asm')
| -rwxr-xr-x | engine/yellow_intro.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/yellow_intro.asm b/engine/yellow_intro.asm index 3adb72b5..60135134 100755 --- a/engine/yellow_intro.asm +++ b/engine/yellow_intro.asm @@ -98,7 +98,7 @@ Func_f98fc: ld a, [wYellowIntroCurrentScene] ld hl, Jumptable_f9906 call Func_fa06e - jp [hl] + jp hl Jumptable_f9906: dw YellowIntroScene0 ; running pika 1 @@ -985,7 +985,7 @@ Func_fa02b: ld a, [hli] ld h, [hl] ld l, a - jp [hl] + jp hl Jumptable_fa03b: dw Func_fa03f |
