aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortwinaphex2020-10-06 21:18:48 +0200
committertwinaphex2020-10-06 21:18:48 +0200
commit4b0a1abe3718a1417d55a37c5d16a0dab57d1f81 (patch)
tree55f012f05d5741641d6271a13788f1e62c09dafd
parentfe6dc12e07338c7e28ccde1ba46b577a8982d2a9 (diff)
downloadsnes9x2005-4b0a1abe3718a1417d55a37c5d16a0dab57d1f81.tar.gz
snes9x2005-4b0a1abe3718a1417d55a37c5d16a0dab57d1f81.tar.bz2
snes9x2005-4b0a1abe3718a1417d55a37c5d16a0dab57d1f81.zip
Get rid of fprintf call
-rw-r--r--source/memmap.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/memmap.c b/source/memmap.c
index 9fda545..598149d 100644
--- a/source/memmap.c
+++ b/source/memmap.c
@@ -1345,13 +1345,6 @@ void InitROM(bool Interleaved)
sprintf(Memory.ROMName, "%s", Safe(Memory.ROMName));
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;
}