From cf6c8c6ddeddf232dc392d1b5459b6066dfe6b78 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 4 Oct 2019 11:52:46 -0500 Subject: [PATCH] Lua console - don't throw exception when opening a .lua file if the user has not associated a .lua file with an application. Fixes #1683 --- BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index 01e632f799..7789dce284 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.ComponentModel; using System.Drawing; +using System.Diagnostics; using System.IO; using System.Linq; using System.Text.RegularExpressions; @@ -936,8 +937,11 @@ namespace BizHawk.Client.EmuHawk { SelectedFiles.ToList().ForEach(file => { - string pathToLoad = ProcessPath(file.Path); - System.Diagnostics.Process.Start(pathToLoad); + Process.Start(new ProcessStartInfo + { + Verb = "Open", + FileName = ProcessPath(file.Path) + }); }); }