NES - remove some console logging spam on mapper 49

This commit is contained in:
adelikat 2012-07-28 01:02:16 +00:00
parent ad0c7d863c
commit 524bc29b43
1 changed files with 0 additions and 1 deletions

View File

@ -42,7 +42,6 @@ namespace BizHawk.Emulation.Consoles.Nintendo
mode = value.Bit(0);
prg = (value >> 4) & 3;
block = (value >> 6) & 3;
Console.WriteLine("val={3}, addr={4}, prg={0},mode={1},block={2}", prg, mode, block, value, addr);
base.WriteWRAM(addr, value);
}