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 /engine/pikachu_movement.asm | |
parent | 1ce6731d98388ecacf94036cd26d0125eebbb943 (diff) |
Fix warnings about deprecated mnemonics on newer builds of rgbds
Diffstat (limited to 'engine/pikachu_movement.asm')
-rwxr-xr-x | engine/pikachu_movement.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/pikachu_movement.asm b/engine/pikachu_movement.asm index 8eb09b3b..e2e27348 100755 --- a/engine/pikachu_movement.asm +++ b/engine/pikachu_movement.asm @@ -121,7 +121,7 @@ ExecutePikachuMovementCommand: ld a, [hli] ld h, [hl] ld l, a - jp [hl] + jp hl GetCoordsForPikachuShadow: ld hl, wPlayerSpriteImageIdx - wPlayerSpriteStateData1 @@ -487,7 +487,7 @@ UpdatePikachuPosition: ld l, a pop de ld a, d - jp [hl] + jp hl .Jumptable: dw .Down |