From 0a0f4e86d8524a7799ff43fe67da05b097c6c2bb Mon Sep 17 00:00:00 2001 From: goyuken Date: Sat, 29 Sep 2012 14:55:11 +0000 Subject: [PATCH] MainForm.ClearSaveRam() no longer deletes a disk file. From my reading of the code, this should not affect movie playback; the saveram from disk is not used when starting playback or recording of a clean movie. If for some reason I'm wrong though, that problem should be addressed directly instead of deleting the file. --- BizHawk.MultiClient/MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 340204b2d2..966f37679d 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -3615,10 +3615,11 @@ namespace BizHawk.MultiClient public void ClearSaveRAM() { //zero says: this is sort of sketchy... but this is no time for rearchitecting + /* string saveRamPath = PathManager.SaveRamPath(Global.Game); var file = new FileInfo(saveRamPath); if (file.Exists) file.Delete(); - + */ try { /*