aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortwinaphex2020-01-08 00:11:26 +0100
committertwinaphex2020-01-08 00:11:26 +0100
commit197058cbea6d59cb567be65ac6addebdabd5b114 (patch)
treedc6efd2678835da8490c03f929857d0258b5231b
parent69a78c2df6b75da8d269bed70c3682e04d96b65b (diff)
downloadsnes9x2005-197058cbea6d59cb567be65ac6addebdabd5b114.tar.gz
snes9x2005-197058cbea6d59cb567be65ac6addebdabd5b114.tar.bz2
snes9x2005-197058cbea6d59cb567be65ac6addebdabd5b114.zip
Comment out fprintf stderr
-rw-r--r--source/memmap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/memmap.c b/source/memmap.c
index 4f76fc8..5f7d84a 100644
--- a/source/memmap.c
+++ b/source/memmap.c
@@ -1345,9 +1345,11 @@ void InitROM(bool Interleaved)
sprintf(Memory.ROMId, "%s", Safe(Memory.ROMId));
sprintf(Memory.CompanyId, "%s", Safe(Memory.CompanyId));
+#if 0
fprintf(stderr,
"\"%s\" [%s] %s, %s, Type: %s, Mode: %s, TV: %s, S-RAM: %s, ROMId: %s Company: %2.2s\n",
Memory.ROMName, (Memory.ROMChecksum + Memory.ROMComplementChecksum != 0xffff || Memory.ROMChecksum != Memory.CalculatedChecksum) ? "bad checksum" : "checksum ok", MapType(), Size(), KartContents(), MapMode(), TVStandard(), StaticRAMSize(), Memory.ROMId, Memory.CompanyId);
+#endif
Settings.ForceHeader = Settings.ForceHiROM = Settings.ForceLoROM = Settings.ForceInterleaved = Settings.ForceNoHeader = Settings.ForceNotInterleaved = Settings.ForceInterleaved2 = false;
}