From 3c0b793d97f7916f46e8d2c08a0c623fe5593c39 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 4 Oct 2019 12:09:23 -0500 Subject: [PATCH] lua console - fix a few other places where not having an association with .lua will throw an exception --- BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index 7ea1f41fda..888e4194f6 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -817,7 +817,11 @@ namespace BizHawk.Client.EmuHawk File.WriteAllText(sfd.FileName, defaultTemplate); LuaImp.ScriptList.Add(new LuaFile(Path.GetFileNameWithoutExtension(sfd.FileName), sfd.FileName)); UpdateDialog(); - Process.Start(sfd.FileName); + Process.Start(new ProcessStartInfo + { + Verb = "Open", + FileName = sfd.FileName + }); } } @@ -975,7 +979,11 @@ namespace BizHawk.Client.EmuHawk File.WriteAllText(sfd.FileName, text); LuaImp.ScriptList.Add(new LuaFile(Path.GetFileNameWithoutExtension(sfd.FileName), sfd.FileName)); UpdateDialog(); - Process.Start(sfd.FileName); + Process.Start(new ProcessStartInfo + { + Verb = "Open", + FileName = sfd.FileName + }); } } }