diff options
author | IIMarckus <iimarckus@gmail.com> | 2010-11-19 23:58:27 -0700 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2010-11-19 23:58:27 -0700 |
commit | b3f714df8dcd4067c90a312f301de63c35a068e0 (patch) | |
tree | 9069b6d67e993fec5817ef4c98e483c32d2c9581 | |
parent | 0675a871ba45fd9f10efeb4f6dd0f88f745fdea7 (diff) |
minor comment improvements
hg-commit-id: 391e80aabed8
-rw-r--r-- | pokered.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pokered.asm b/pokered.asm index 9537dac7..63e3f3c0 100644 --- a/pokered.asm +++ b/pokered.asm @@ -618,11 +618,12 @@ INCBIN "baserom.gbc",$4000,$2115 OakSpeech: ; 6115 ld a,$FF - call $23B1 - ld a,2 + call $23B1 ; stop music + ld a,2 ; bank of song ld c,a ld a,$EF ; song # - call $23A1 ; plays music? + ld a,$D9 + call $23A1 ; plays music call ClearScreen call $36A0 call $60CA @@ -719,7 +720,7 @@ OakSpeech: ; 6115 ld [$CFC7],a ld a,$FF ld [$C0EE],a - call $23B1 + call $23B1 ; stop music pop af ld [$FFB8],a ld [$2000],a |