moving sprite, still ugly

This commit is contained in:
Thorn Avery 2020-05-24 18:00:27 +12:00
parent aa5b06312e
commit 58bd0c46ff
2 changed files with 5 additions and 4 deletions

View File

@ -46,6 +46,7 @@ Start:
game_loop:
call Wait_VBlank
call Read_Pad
call PC_Update
call Clear_OAM
ld de, wShadowOAM
ld hl, Player

View File

@ -124,12 +124,12 @@ PC_Update:
jr nz, .last
ld c, 1
.last:
ld a, [rPlayerX]
ld a, [Player_XPos]
add c
ld [rPlayerX], a
ld a, [rPlayerY]
ld [Player_XPos], a
ld a, [Player_YPos]
add b
ld [rPlayerY], a
ld [Player_YPos], a
.end:
ret