mirror of https://github.com/snes9xgit/snes9x.git
Round up calculated size to next 8k for bad hacks.
This commit is contained in:
parent
85326c8daf
commit
83916eb56d
|
@ -1441,7 +1441,7 @@ bool8 CMemory::LoadROMInt (int32 ROMfillSize)
|
||||||
lo_score = ScoreLoROM(FALSE);
|
lo_score = ScoreLoROM(FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
CalculatedSize = (ROMfillSize / 0x2000) * 0x2000;
|
CalculatedSize = ((ROMfillSize + 0x1fff) / 0x2000) * 0x2000;
|
||||||
|
|
||||||
if (CalculatedSize > 0x400000 &&
|
if (CalculatedSize > 0x400000 &&
|
||||||
(ROM[0x7fd5] + (ROM[0x7fd6] << 8)) != 0x3423 && // exclude SA-1
|
(ROM[0x7fd5] + (ROM[0x7fd6] << 8)) != 0x3423 && // exclude SA-1
|
||||||
|
|
Loading…
Reference in New Issue