From eeca40e07252d280f19eee3dd18d84b7f46a2431 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Tue, 15 Dec 2020 08:51:08 -0500 Subject: [PATCH] libsnes: Cache region from core once at start The region value in the comm struct is set once and then gets wiped out later. I don't know what wipes it, but so many things have their hands on that, it's not surprising. Someone knew about this and handled _mapper appropriately, but not _region. Fixes #2503 --- .../Consoles/Nintendo/SNES/LibsnesCore.IMemoryDomains.cs | 1 + .../Consoles/Nintendo/SNES/LibsnesCore.IRegionable.cs | 2 +- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IMemoryDomains.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IMemoryDomains.cs index 9581ae797d..52964b8af6 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IMemoryDomains.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IMemoryDomains.cs @@ -11,6 +11,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES private readonly List _memoryDomainList = new List(); private IMemoryDomains _memoryDomains; private LibsnesApi.SNES_MAPPER? _mapper; + private LibsnesApi.SNES_REGION? _region; // works for WRAM, garbage for anything else private static int? FakeBusMap(int addr) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IRegionable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IRegionable.cs index 807e671d72..6e1eb08a5b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IRegionable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.IRegionable.cs @@ -4,7 +4,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES { public partial class LibsnesCore : IRegionable { - public DisplayType Region => Api.Region == LibsnesApi.SNES_REGION.NTSC + public DisplayType Region => _region == LibsnesApi.SNES_REGION.NTSC ? DisplayType.NTSC : DisplayType.PAL; } diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index b76179506d..a5e13fa7a2 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -173,7 +173,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES } } - if (Api.Region == LibsnesApi.SNES_REGION.NTSC) + if (_region == LibsnesApi.SNES_REGION.NTSC) { // similar to what aviout reports from snes9x and seems logical from bsnes first principles. bsnes uses that numerator (ntsc master clockrate) for sure. VsyncNumerator = 21477272; @@ -484,6 +484,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES : Api.CMD_load_cartridge_super_game_boy(_currLoadParams.rom_xml, _currLoadParams.rom_data, _currLoadParams.rom_size, _currLoadParams.dmg_data); _mapper = Api.Mapper; + _region = Api.Region; return result; }