diff options
| author | yenatch <yenatch@gmail.com> | 2017-09-29 22:41:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-29 22:41:34 -0400 |
| commit | 5c2419383118280465a89657fed34ed6562f2981 (patch) | |
| tree | 4844873fcd027d8f238be629d283663d5fcafc9b /engine/battle/animations.asm | |
| parent | Add Gen 3 disassemblies. (diff) | |
| parent | Update Travis configuration to use rgbds 0.3.3 (diff) | |
| download | pokeyellow-5c2419383118280465a89657fed34ed6562f2981.tar.gz pokeyellow-5c2419383118280465a89657fed34ed6562f2981.tar.xz pokeyellow-5c2419383118280465a89657fed34ed6562f2981.zip | |
Merge pull request #167 from Pokechu22/rgbds-0.3.3
Update for RGBDS 0.3.3
Diffstat (limited to 'engine/battle/animations.asm')
| -rwxr-xr-x | engine/battle/animations.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/battle/animations.asm b/engine/battle/animations.asm index 4964b2cf..1e400aa5 100755 --- a/engine/battle/animations.asm +++ b/engine/battle/animations.asm @@ -213,7 +213,7 @@ PlayAnimation: ld h,a ld de,.nextAnimationCommand push de - jp [hl] ; jump to special effect function + jp hl ; jump to special effect function .playSubanimation ld c,a and a,%00111111 @@ -457,7 +457,7 @@ PlayApplyingAttackAnimation: ld a,[hli] ld h,[hl] ld l,a - jp [hl] + jp hl AnimationTypePointerTable: dw ShakeScreenVertically ; enemy mon has used a damaging move without a side effect @@ -642,7 +642,7 @@ DoSpecialEffectByAnimationId: ld l,a ld de,.done push de - jp [hl] + jp hl .done pop bc pop de @@ -1080,7 +1080,7 @@ CallWithTurnFlipped: ld [H_WHOSETURN],a ld de,.returnAddress push de - jp [hl] + jp hl .returnAddress pop af ld [H_WHOSETURN],a |
