diff --git a/app/AutoTDP/AutoTDPService.cs b/app/AutoTDP/AutoTDPService.cs index e3408d65..af43915e 100644 --- a/app/AutoTDP/AutoTDPService.cs +++ b/app/AutoTDP/AutoTDPService.cs @@ -202,7 +202,7 @@ namespace GHelper.AutoTDP foreach (GameProfile gp in GameProfiles) { - if (gp.ProcessName is not null && processName.EndsWith(gp.ProcessName)) + if (gp.ProcessName is not null && processName.EndsWith(gp.ProcessName, StringComparison.CurrentCultureIgnoreCase)) { return gp; }