mist: stoney: fix back-to-mist glitch

had one too many jsr w/o a ret
This commit is contained in:
Vince Weaver 2020-04-21 22:16:42 -04:00
parent 31f1162e60
commit 58b3810683
2 changed files with 8 additions and 1 deletions

View File

@ -19,8 +19,15 @@ mist_link_book:
sta BTC_L
lda #>linking_noise
sta BTC_H
ldy #0
lda (BTC_L),Y
cmp #$55 ; hack
bne skip_audio
ldx #LINKING_NOISE_LENGTH ; 45 pages long???
jsr play_audio
skip_audio:
lda #OCTAGON_CEILING
sta LOCATION

View File

@ -400,7 +400,7 @@ do_animate_stoney_book:
lda #0
sta ANIMATE_FRAME
done_animate_book:
jmp nothing_special
rts