clean-ups, going to beat myself tonight

This commit is contained in:
gbeauche 2003-12-15 15:27:01 +00:00
parent c3a706d354
commit f5aed53e3c

View File

@ -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;
}