From dd551ed67f9d8f21f890980b3352c9aaeded7658 Mon Sep 17 00:00:00 2001 From: Michael Malloy Date: Sat, 6 Feb 2021 16:27:28 -0600 Subject: [PATCH] Removed libWiiSharp check, the usefulness is 0 at this point. --- Sharpii/Program.cs | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Sharpii/Program.cs b/Sharpii/Program.cs index 4c0d779..8c97f92 100644 --- a/Sharpii/Program.cs +++ b/Sharpii/Program.cs @@ -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())