mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
Added support for x64 tools
This commit is contained in:
parent
bf007bd421
commit
bde9d800b9
1 changed files with 1 additions and 3 deletions
|
@ -2,7 +2,6 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.IO.Compression;
|
||||
using System.Net;
|
||||
using System.Net.Http;
|
||||
using System.Security.Cryptography;
|
||||
using System.Threading;
|
||||
|
@ -13,7 +12,7 @@ namespace UWUVCI_AIO_WPF.Classes
|
|||
class ToolCheck
|
||||
{
|
||||
static string FolderName = new FileInfo(System.Reflection.Assembly.GetEntryAssembly().Location).DirectoryName + "\\bin\\Tools";
|
||||
public static string backupulr = @"https://github.com/Hotbrawl20/UWUVCI-Tools/raw/master/";
|
||||
public static string backupulr = @"https://github.com/Hotbrawl20/UWUVCI-Tools/raw/master/" + (Environment.Is64BitProcess ? "x64/" : "");
|
||||
public static string[] ToolNames =
|
||||
{
|
||||
"N64Converter.exe",
|
||||
|
@ -31,7 +30,6 @@ namespace UWUVCI_AIO_WPF.Classes
|
|||
"nintendont.dol",
|
||||
"nintendont_force.dol",
|
||||
"GetExtTypePatcher.exe",
|
||||
//"wbfs_file.exe",
|
||||
"wit.exe",
|
||||
"cygwin1.dll",
|
||||
"cygz.dll",
|
||||
|
|
Loading…
Reference in a new issue