diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-06-06 03:22:40 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-06-06 03:22:40 -0500 |
commit | a33f356461e29559950f51dbef2e2d83235ea98f (patch) | |
tree | 20a7d6dc38f69f23045cb45b34d0ef17f28bf5f2 /engine/turn_sprite.asm | |
parent | a070bdcb21310c7d17b4fd057852f788fdfd61ca (diff) |
Remove unused source files
Diffstat (limited to 'engine/turn_sprite.asm')
-rwxr-xr-x | engine/turn_sprite.asm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/engine/turn_sprite.asm b/engine/turn_sprite.asm deleted file mode 100755 index 84037cfe..00000000 --- a/engine/turn_sprite.asm +++ /dev/null @@ -1,25 +0,0 @@ -UpdateSpriteFacingOffsetAndDelayMovement: ; 13074 (4:7074) - ld h, $c2 - ld a, [H_CURRENTSPRITEOFFSET] - add $8 - ld l, a - ld a, $7f ; maximum movement delay - ld [hl], a ; c2x8 (movement delay) - dec h - ld a, [H_CURRENTSPRITEOFFSET] - add $9 - ld l, a - ld a, [hld] ; c1x9 (facing direction) - ld b, a - xor a - ld [hld], a - ld [hl], a ; c1x8 (walk animation frame) - ld a, [H_CURRENTSPRITEOFFSET] - add $2 - ld l, a - ld a, [hl] ; c1x2 (facing and animation table offset) - or b ; or in the facing direction - ld [hld], a - ld a, $2 ; delayed movement status - ld [hl], a ; c1x1 (movement status) - ret |