mirror of
https://github.com/TheShadowEevee/Sharpii-NetCore.git
synced 2025-01-11 14:58:51 -06:00
Removed libWiiSharp check, the usefulness is 0 at this point.
This commit is contained in:
parent
28f25251b3
commit
dd551ed67f
1 changed files with 0 additions and 17 deletions
|
@ -35,23 +35,6 @@ namespace Sharpii
|
|||
Environment.Exit(0);
|
||||
}
|
||||
|
||||
if (!File.Exists(Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory) + Path.DirectorySeparatorChar + "libWiiSharp.dll"))
|
||||
{
|
||||
Console.WriteLine("ERROR: libWiiSharp.dll not found");
|
||||
Console.WriteLine("This should not appear on the .Net Core port.");
|
||||
Console.WriteLine("If you see this, report how you got here on https://github.com/TheShadowEevee/Sharpii-NetCore/issues.");
|
||||
Console.WriteLine("Error: SHARPII_NET_CORE_MAIN_MISSING_DLL_LIBWIISHARP_01");
|
||||
if (OperatingSystem.Windows())
|
||||
{
|
||||
Environment.Exit(0x00003E8F);
|
||||
}
|
||||
else
|
||||
{
|
||||
Environment.Exit(0x00000011);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 1; i < args.Length; i++)
|
||||
{
|
||||
switch (args[i].ToUpper())
|
||||
|
|
Loading…
Reference in a new issue