From 477ef2e5194bba7b8b92541ec30f5ab8b44cc986 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 3 Dec 2021 07:58:05 +1000 Subject: [PATCH] Fix typo fixes e38726db5, c5690e726 --- src/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs | 2 +- src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs b/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs index 8a31f9fee2..393c5af0aa 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs @@ -40,7 +40,7 @@ namespace BizHawk.Emulation.Cores.Intellivision // look up hash in gamedb to see what mapper to use string s_mapper = null; - var gi = Database.CheckDatabase(SHA1Checksum.ComputePrefixedHex(rom.AsSpan(start: 0, length: rom.Length))); + var gi = Database.CheckDatabase(SHA1Checksum.ComputePrefixedHex(rom)); if (gi != null && !gi.GetOptions().TryGetValue("board", out s_mapper)) { throw new Exception("INTV gamedb entries must have a board identifier!"); } if (gi == null && (rom.Length % 1024) != 0) { throw new Exception("Game is of unusual size but no header entry present and hash not in game db."); } _mapper = 0; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index ec1fe9bb03..185745b102 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -441,7 +441,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES { //now that we know we have an iNES header, we can try to ignore it. - var trimmed = file.AsSpan(start: 16, length: file.Length - 32); + var trimmed = file.AsSpan(start: 16, length: file.Length - 16); hash_sha1 = SHA1Checksum.ComputePrefixedHex(trimmed); hash_sha1_several.Add(hash_sha1); hash_md5 = MD5Checksum.ComputePrefixedHex(trimmed);