aboutsummaryrefslogtreecommitdiff
path: root/src-z80/core/bgm.z80
diff options
context:
space:
mode:
authorJavier Degirolmo2012-04-07 20:28:18 -0300
committerJavier Degirolmo2012-04-07 20:28:18 -0300
commitda98253489b1334f9d23f477ec8fa2a76e664aa6 (patch)
tree4187354505c4c3314db8d5b414cd698c501be1a4 /src-z80/core/bgm.z80
parentefd1677ed70a4e0acbae05ae3bc0d9b14b8c1405 (diff)
Bugfixes (especially killing FM channels), panning is restored, version bumped up to 0.9 - going to look mainly for bugs now...
Diffstat (limited to 'src-z80/core/bgm.z80')
-rw-r--r--src-z80/core/bgm.z8010
1 files changed, 0 insertions, 10 deletions
diff --git a/src-z80/core/bgm.z80 b/src-z80/core/bgm.z80
index 27cb89c..ea245a1 100644
--- a/src-z80/core/bgm.z80
+++ b/src-z80/core/bgm.z80
@@ -42,16 +42,6 @@ PlayBGM:
ld hl, ProcessBGM ; Tell Echo to process BGM
ld (DoTick_BGM+1), hl
-; ld b, 8 ; Kill all FM channels explicitly
-;.resetallfm:
-; ld a, b
-; and $04
-; rrca
-; ld iyl, a
-; ld a, b
-; call KillFM
-; djnz .resetallfm
-
jp IdleLoop ; End of subroutine
;****************************************************************************