Resolve relative paths passed as --lua (resolves #2077)

This commit is contained in:
YoshiRulz 2021-09-21 05:39:19 +10:00
parent 0c855e0047
commit c112f0b036
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -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();