memmap: Fix SD3 Italian translation that uses ExtHiROM.

Lower Mother 2 hack heuristic score to 3.
This commit is contained in:
BearOso 2023-09-11 12:08:30 -05:00
parent 153965e5f2
commit 84ac947567
1 changed files with 1 additions and 1 deletions

View File

@ -1080,7 +1080,7 @@ int CMemory::ScoreHiROM (bool8 skip_header, int32 romoff)
// Check for extended HiROM expansion used in Mother 2 Deluxe et al.
// Looks for size byte 13 (8MB) and an actual ROM size greater than 4MB
if (buf[0xd7] == 13 && CalculatedSize > 1024 * 1024 * 4)
score += 5;
score += 3;
if (buf[0xd5] & 0x1)
score += 2;