summaryrefslogtreecommitdiff
path: root/ym2612.c
diff options
context:
space:
mode:
Diffstat (limited to 'ym2612.c')
-rw-r--r--ym2612.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ym2612.c b/ym2612.c
index 9b0bad8..bd4c0f2 100644
--- a/ym2612.c
+++ b/ym2612.c
@@ -636,9 +636,9 @@ void ym_data_write(ym2612_context * context, uint8_t value)
{
//TODO: Test reg
case REG_LFO:
- if ((value & 0x8) && !context->lfo_enable) {
+ /*if ((value & 0x8) && !context->lfo_enable) {
printf("LFO Enabled, Freq: %d\n", value & 0x7);
- }
+ }*/
context->lfo_enable = value & 0x8;
if (!context->lfo_enable) {
context->lfo_am_step = context->lfo_pm_step = 0;