mirror of
https://github.com/blondie7575/GSCats.git
synced 2024-11-25 10:30:49 +00:00
Add important meow iteration
This commit is contained in:
parent
2b5e7a29f0
commit
1977553b83
31
player.s
31
player.s
@ -386,11 +386,7 @@ renderAnimationPos:
|
|||||||
renderShootAnimation:
|
renderShootAnimation:
|
||||||
SAVE_AXY
|
SAVE_AXY
|
||||||
|
|
||||||
; Play meow sound
|
jsr playIterativeMeowSound
|
||||||
phy
|
|
||||||
ldy #SOUND_MEOW1
|
|
||||||
jsr playSound
|
|
||||||
ply
|
|
||||||
|
|
||||||
PLAYERPTR_Y
|
PLAYERPTR_Y
|
||||||
|
|
||||||
@ -480,3 +476,28 @@ treatsStr:
|
|||||||
pstring "$ "
|
pstring "$ "
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; playIterativeMeowSound
|
||||||
|
;
|
||||||
|
playIterativeMeowSound:
|
||||||
|
phy
|
||||||
|
|
||||||
|
ldy meowDex
|
||||||
|
jsr playSound
|
||||||
|
iny
|
||||||
|
iny
|
||||||
|
cpy #SOUND_MEOW4
|
||||||
|
bcc playIterativeMeowSoundDone
|
||||||
|
beq playIterativeMeowSoundDone
|
||||||
|
ldy #SOUND_MEOW1
|
||||||
|
|
||||||
|
playIterativeMeowSoundDone:
|
||||||
|
sty meowDex
|
||||||
|
|
||||||
|
ply
|
||||||
|
rts
|
||||||
|
|
||||||
|
meowDex:
|
||||||
|
.word SOUND_MEOW1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user