From 94383ab14305c3476279b25331369e1f85a6d11a Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 17 Aug 2016 20:23:56 -0500 Subject: [PATCH] fix deleting recent roms when missing --- BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs | 11 ++++++++--- BizHawk.Client.EmuHawk/MainForm.cs | 6 +++--- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs b/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs index 69cccf2897..be6f7dc225 100644 --- a/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs +++ b/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs @@ -140,7 +140,9 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions //in any case, make a menuitem to let you remove the item var tsmiRemovePath = new ToolStripMenuItem { Text = "&Remove" }; - tsmiRemovePath.Click += (o, ev) => { recent.Remove(path); }; + tsmiRemovePath.Click += (o, ev) => { + recent.Remove(path); + }; tsdd.Items.Add(tsmiRemovePath); ////experiment of popping open a submenu. doesnt work well. @@ -210,7 +212,7 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions return items.ToArray(); } - public static void HandleLoadError(this RecentFiles recent, string path) + public static void HandleLoadError(this RecentFiles recent, string path, string encodedPath = null) { GlobalWin.Sound.StopSound(); if (recent.Frozen) @@ -222,7 +224,10 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions var result = MessageBox.Show("Could not open " + path + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error); if (result == DialogResult.Yes) { - recent.Remove(path); + if (encodedPath != null) + recent.Remove(encodedPath); + else + recent.Remove(path); } } diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 8bf89e5deb..b940fbf668 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1770,11 +1770,11 @@ namespace BizHawk.Client.EmuHawk }; //if(ioa is this or that) - for more complex behaviour - rom = ioa.SimplePath; + string romPath = ioa.SimplePath; - if (!LoadRom(rom, args)) + if (!LoadRom(romPath, args)) { - Global.Config.RecentRoms.HandleLoadError(rom); + Global.Config.RecentRoms.HandleLoadError(romPath, rom); } }