From bcad6f9b0850d009ca825847b02d2949d885753f Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 6 Jun 2017 20:04:59 -0400 Subject: [PATCH] NES: Fix some more exceptions --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index f913315e1b..6675db1a34 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -557,15 +557,22 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES LoadWriteLine("Since this rom has a 16 KB PRG, we'll hash it as 8KB too for bootgod's DB:"); var msTemp = new MemoryStream(); msTemp.Write(file, 16, 8 * 1024); //add prg - if (file.Length > (16 * 1024 + 16)) + if (file.Length >= (16 * 1024 + iNesHeaderInfo.chr_size * 1024 + 16)) { // This assumes that even though the PRG is only 8k the CHR is still written // 16k into the file, which is not always the case (e.x. Galaxian RevA) msTemp.Write(file, 16 + 16 * 1024, iNesHeaderInfo.chr_size * 1024); //add chr } + else if (file.Length >= (8 * 1024 + iNesHeaderInfo.chr_size * 1024 + 16)) + { + // maybe the PRG is only 8k + msTemp.Write(file, 16 + 8 * 1024, iNesHeaderInfo.chr_size * 1024); //add chr + } else { - msTemp.Write(file, 16 + 8 * 1024, iNesHeaderInfo.chr_size * 1024); //add chr + // we failed somehow + // most likely the header is wrong + Console.WriteLine("WARNING: 16kb PRG iNES header but unable to parse"); } msTemp.Flush(); var bytes = msTemp.ToArray();