Update search paths order for DLIR on Unix and add mupen lib dir

This commit is contained in:
YoshiRulz 2020-07-28 17:54:54 +10:00
parent 75e815f09e
commit 34d56ca555
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ namespace BizHawk.Common
var currDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase)?.Replace("file:", "") ?? string.Empty;
UnixSearchPaths = new[]
{
"/usr/lib/", "/usr/lib/bizhawk/",
$"{currDir}/", $"{currDir}/dll/"
$"{currDir}/", $"{currDir}/dll/",
"/usr/lib/bizhawk/", "/usr/lib/", "/usr/lib/mupen64plus/"
};
}