PCE - remove some console log noise

This commit is contained in:
zeromus 2015-10-26 19:27:01 -05:00
parent fbe010a18d
commit 4bae60f52e
1 changed files with 1 additions and 1 deletions

View File

@ -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;