mirror of https://github.com/snes9xgit/snes9x.git
memmap: Simplify a heuristic to avoid UB.
This commit is contained in:
parent
92b7fb2e9f
commit
bc98b1dee1
|
@ -1112,7 +1112,7 @@ int CMemory::ScoreHiROM (bool8 skip_header, int32 romoff)
|
||||||
if (CalculatedSize > 1024 * 1024 * 3)
|
if (CalculatedSize > 1024 * 1024 * 3)
|
||||||
score += 4;
|
score += 4;
|
||||||
|
|
||||||
if ((1 << (buf[0xd7] - 7)) > 48)
|
if (buf[0xd7] > 12)
|
||||||
score -= 1;
|
score -= 1;
|
||||||
|
|
||||||
if (!allASCII(&buf[0xb0], 6))
|
if (!allASCII(&buf[0xb0], 6))
|
||||||
|
|
Loading…
Reference in New Issue