From 03730c830c19bed214bea2558e31c9032360c936 Mon Sep 17 00:00:00 2001 From: ZestyTS Date: Thu, 5 Oct 2023 20:25:23 -0700 Subject: [PATCH] ToLower() --- UWUVCI AIO WPF/UI/Windows/MenuWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UWUVCI AIO WPF/UI/Windows/MenuWindow.xaml.cs b/UWUVCI AIO WPF/UI/Windows/MenuWindow.xaml.cs index da4b5cc..4195b4a 100644 --- a/UWUVCI AIO WPF/UI/Windows/MenuWindow.xaml.cs +++ b/UWUVCI AIO WPF/UI/Windows/MenuWindow.xaml.cs @@ -514,7 +514,7 @@ namespace UWUVCI_AIO_WPF var p = new Process(); var fileName = Application.ResourceAssembly.Location; foreach (var file in Directory.GetFiles(Directory.GetCurrentDirectory(), "*.exe")) - if (Path.GetFileName(file).Contains("vWii")) + if (Path.GetFileName(file).ToLower().Contains("vwii")) { fileName = file; break;