Resolve relative paths passed as --lua (resolves #2077)
This commit is contained in:
parent
0c855e0047
commit
c112f0b036
|
@ -623,7 +623,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (_argParser.luaScript != null)
|
||||
{
|
||||
if (OSTailoredCode.IsUnixHost) Console.WriteLine($"The Lua environment can currently only be created on Windows, {_argParser.luaScript} will not be loaded.");
|
||||
else Tools.LuaConsole.LoadLuaFile(_argParser.luaScript);
|
||||
else Tools.LuaConsole.LoadLuaFile(_argParser.luaScript.MakeAbsolute());
|
||||
}
|
||||
|
||||
SetStatusBar();
|
||||
|
|
Loading…
Reference in New Issue