change dll check descriptions to match prereq installer (and be more googlable); also remove vcruntime140.dll since I think vcruntime140_1.dll obsoletes it. I could be wrong, though. We'll readd it if its proven so.
This commit is contained in:
parent
513e2287c4
commit
ad26b09717
|
@ -41,9 +41,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
OSTC.LinkedLibManager.FreeByPtr(p);
|
||||
}
|
||||
CheckLib("vcruntime140.dll", "Microsoft's Universal CRT (MSVC 14.0+ / VS 2015+)");
|
||||
CheckLib("vcruntime140_1.dll", "Microsoft's Universal CRT (MSVC 14.0+ / VS 2015+)");
|
||||
CheckLib("msvcr100.dll", "Microsoft's Visual C++ Runtime 10.0 (VS 2010)"); // for Mupen64Plus, and some others
|
||||
CheckLib("vcruntime140_1.dll", "Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017 and 2019 (x64)");
|
||||
CheckLib("msvcr100.dll", "Microsoft Visual C++ 2010 SP1 Runtime (x64)"); // for Mupen64Plus, and some others
|
||||
|
||||
// this will look in subdirectory "dll" to load pinvoked stuff
|
||||
var dllDir = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "dll");
|
||||
|
|
Loading…
Reference in New Issue