PCE - remove some console log noise
This commit is contained in:
parent
fbe010a18d
commit
4bae60f52e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue