--- SheepShaver/src/rom_patches.cpp 2003/12/15 15:25:38 1.22 +++ SheepShaver/src/rom_patches.cpp 2004/01/12 15:37:18 1.24 @@ -1,7 +1,7 @@ /* * rom_patches.cpp - ROM patches * - * SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig + * SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -319,7 +319,6 @@ static bool check_rom_patch_space(uint32 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; }