From 30bff133a8c55013372c53181f7462303fdaf796 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 18 May 2014 17:18:26 +0000 Subject: [PATCH] silence "Error: tried to load saveram, but core would not accept it?" message --- BizHawk.Client.EmuHawk/MainForm.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 0557f0de83..4e2c82ffe9 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1215,7 +1215,9 @@ namespace BizHawk.Client.EmuHawk var oldram = Global.Emulator.ReadSaveRam(); if (oldram == null) { - MessageBox.Show("Error: tried to load saveram, but core would not accept it?"); + // we're eating this one now. the possible negative consequence is that a user could lose + // their saveram and not know why + // MessageBox.Show("Error: tried to load saveram, but core would not accept it?"); return; } sram = new byte[oldram.Length];