diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 6b8dac0db8..70cf12604d 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -166,7 +166,7 @@ namespace BizHawk.Client.EmuHawk var found = enabled.First(tuple => tuple.Item1 == requestedExtToolDll || Path.GetFileName(tuple.Item1) == requestedExtToolDll || Path.GetFileNameWithoutExtension(tuple.Item1) == requestedExtToolDll); - Tools.LoadExternalToolForm(found.Item1, found.Item2); + Tools.LoadExternalToolForm(found.Item1, found.Item2, skipExtToolWarning: true); } catch (Exception) { diff --git a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs index b09cfd7617..7c9368d22b 100644 --- a/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs +++ b/src/BizHawk.Client.EmuHawk/tools/ToolManager.cs @@ -144,7 +144,7 @@ namespace BizHawk.Client.EmuHawk } /// Loads the external tool's entry form. - public IExternalToolForm LoadExternalToolForm(string toolPath, string customFormTypeName, bool focus = true) + public IExternalToolForm LoadExternalToolForm(string toolPath, string customFormTypeName, bool focus = true, bool skipExtToolWarning = false) { var existingTool = _tools.OfType().FirstOrDefault(t => t.GetType().Assembly.Location == toolPath); if (existingTool != null) @@ -161,7 +161,7 @@ namespace BizHawk.Client.EmuHawk _tools.Remove(existingTool); } - var newTool = (IExternalToolForm) CreateInstance(typeof(IExternalToolForm), toolPath, customFormTypeName); + var newTool = (IExternalToolForm) CreateInstance(typeof(IExternalToolForm), toolPath, customFormTypeName, skipExtToolWarning: skipExtToolWarning); if (newTool == null) return null; if (newTool is Form form) form.Owner = _owner; ApiInjector.UpdateApis(_apiProvider, newTool); @@ -603,7 +603,7 @@ namespace BizHawk.Client.EmuHawk /// Path dll for an external tool /// For external tools, of the entry form's type ( will be ) /// New instance of an IToolForm - private IToolForm CreateInstance(Type toolType, string dllPath, string toolTypeName = null) + private IToolForm CreateInstance(Type toolType, string dllPath, string toolTypeName = null, bool skipExtToolWarning = false) { IToolForm tool; @@ -612,7 +612,7 @@ namespace BizHawk.Client.EmuHawk // Hard stuff as we need a proxy object that inherit from MarshalByRefObject. if (toolType == typeof(IExternalToolForm)) { - if (MessageBox.Show( + if (skipExtToolWarning || MessageBox.Show( "Are you sure want to load this external tool?\r\nAccept ONLY if you trust the source and if you know what you're doing. In any other case, choose no.", "Confirm loading", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) {