From 5c6a6240ed65aafb6e1caf7ca6d4862cf57d1a27 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 11 Nov 2021 14:26:27 -0500 Subject: [PATCH] NES: Fix Zelda SaveRAM fixes #1623 --- src/BizHawk.Client.EmuHawk/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 607cd62a0b..fad454fd52 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -1826,7 +1826,7 @@ namespace BizHawk.Client.EmuHawk byte[] sram; // some cores might not know how big the saveram ought to be, so just send it the whole file - if (Emulator is MGBAHawk || Emulator is NeoGeoPort) + if (Emulator is MGBAHawk || Emulator is NeoGeoPort || (Emulator is NES && (Emulator as NES).BoardName == "FDS")) { sram = File.ReadAllBytes(saveRamPath); } @@ -1837,7 +1837,7 @@ namespace BizHawk.Client.EmuHawk { // we're eating this one now. The possible negative consequence is that a user could lose // their saveram and not know why -// ShowMessageBox(owner: null, "Error: tried to load saveram, but core would not accept it?"); + // ShowMessageBox(owner: null, "Error: tried to load saveram, but core would not accept it?"); return; }