From 4bae60f52e77e2b3dec44410e5eab9216a21c0da Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 26 Oct 2015 19:27:01 -0500 Subject: [PATCH] PCE - remove some console log noise --- BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs index 8b90dc64d7..341bb0e6be 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs @@ -219,7 +219,7 @@ namespace BizHawk.Emulation.Cores.PCEngine { // TODO: dont do this all in one scanline. I guess it can do about 227 words per scanline. // TODO: to be honest, dont do it in a block per scanline. put it in the CPU think function. - Console.WriteLine("******************************* Doing some dma ******************************"); + //Console.WriteLine("******************************* Doing some dma ******************************"); int advanceSource = (Registers[DCR] & 4) == 0 ? +1 : -1; int advanceDest = (Registers[DCR] & 8) == 0 ? +1 : -1; int wordsDone = 0;