mirror of
https://github.com/blondie7575/GSCats.git
synced 2024-11-22 06:31:48 +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:
|
||||
SAVE_AXY
|
||||
|
||||
; Play meow sound
|
||||
phy
|
||||
ldy #SOUND_MEOW1
|
||||
jsr playSound
|
||||
ply
|
||||
jsr playIterativeMeowSound
|
||||
|
||||
PLAYERPTR_Y
|
||||
|
||||
@ -480,3 +476,28 @@ treatsStr:
|
||||
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