mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-22 15:12:18 +13:00
Replace deprecated mnemonics by the correct ones
The old mnemonics generate warnings with new versions of rgbds. This patch replaces them by the correct ones. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
parent
dfc094db72
commit
9ea25bc8cd
17 changed files with 30 additions and 30 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue