From 2d39b8c53251b45165c854246902636f7e711ae4 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 17 Jul 2021 21:45:37 -0700 Subject: [PATCH] Add more GFWL checks --- BurnOutSharp/ProtectionType/GFWL.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/BurnOutSharp/ProtectionType/GFWL.cs b/BurnOutSharp/ProtectionType/GFWL.cs index 0096f8c7..a0de6de3 100644 --- a/BurnOutSharp/ProtectionType/GFWL.cs +++ b/BurnOutSharp/ProtectionType/GFWL.cs @@ -25,6 +25,9 @@ namespace BurnOutSharp.ProtectionType { var matchers = new List { + // Might be specifically GFWL/Gfwlivesetup.exe + new PathMatchSet(new PathMatch("Gfwlivesetup.exe", useEndsWith: true), "Games for Windows - Live"), + new PathMatchSet(new PathMatch("xliveinstall.dll", useEndsWith: true), "Games for Windows - Live"), new PathMatchSet(new PathMatch("XLiveRedist.msi", useEndsWith: true), "Games for Windows - Live"), }; @@ -36,6 +39,9 @@ namespace BurnOutSharp.ProtectionType { var matchers = new List { + // Might be specifically GFWL/Gfwlivesetup.exe + new PathMatchSet(new PathMatch("Gfwlivesetup.exe", useEndsWith: true), "Games for Windows - Live"), + new PathMatchSet(new PathMatch("xliveinstall.dll", useEndsWith: true), "Games for Windows - Live"), new PathMatchSet(new PathMatch("XLiveRedist.msi", useEndsWith: true), "Games for Windows - Live"), };