changeset 532:666210adf87b

Comment out LFO debug printf
author Mike Pavone <pavone@retrodev.com>
date Wed, 12 Feb 2014 23:32:05 -0800
parents 46a60bb5f785
children e7df1b24394a
files ym2612.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ym2612.c	Wed Feb 12 23:25:48 2014 -0800
+++ b/ym2612.c	Wed Feb 12 23:32:05 2014 -0800
@@ -636,9 +636,9 @@
 		{
 		//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;