From da7384a3af3f04db85b349f56637c17a8d1b697d Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 23 Dec 2016 08:16:54 +0100 Subject: [PATCH] Commented out excess DENSEL polarity logging from pc87306.c. --- src/pc87306.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc87306.c b/src/pc87306.c index 1c0b26daa..9290c6209 100644 --- a/src/pc87306.c +++ b/src/pc87306.c @@ -265,7 +265,7 @@ process_value: } break; case 9: - pclog("Setting DENSEL polarity to: %i (before: %i)\n", (val & 0x40 ? 1 : 0), fdc_get_densel_polarity()); + // pclog("Setting DENSEL polarity to: %i (before: %i)\n", (val & 0x40 ? 1 : 0), fdc_get_densel_polarity()); fdc_update_enh_mode((val & 4) ? 1 : 0); fdc_update_densel_polarity((val & 0x40) ? 1 : 0); break;