From f5aed53e3c7715473646033530aedbaf70f09f3a Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Mon, 15 Dec 2003 15:27:01 +0000 Subject: [PATCH] clean-ups, going to beat myself tonight --- SheepShaver/src/rom_patches.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/SheepShaver/src/rom_patches.cpp b/SheepShaver/src/rom_patches.cpp index 90f50c54..f63e30c8 100644 --- a/SheepShaver/src/rom_patches.cpp +++ b/SheepShaver/src/rom_patches.cpp @@ -319,7 +319,6 @@ static bool check_rom_patch_space(uint32 base, uint32 size) size = (size + 3) & -4; for (int i = 0; i < size; i += 4) { uint32 x = ntohl(*(uint32 *)(ROM_BASE + base + i)); - printf("%08x\n", x); if (x != 0x6b636b63 && x != 0) return false; }