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 + }); } } }