From df7d5150c1e6048f03d7f419753c6ad08eed677f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 14 Mar 2022 08:54:58 -0700 Subject: [PATCH] Add yet another Steam exe (fixes #92) --- BurnOutSharp/ProtectionType/Steam.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BurnOutSharp/ProtectionType/Steam.cs b/BurnOutSharp/ProtectionType/Steam.cs index 25dfdf10..42e6237d 100644 --- a/BurnOutSharp/ProtectionType/Steam.cs +++ b/BurnOutSharp/ProtectionType/Steam.cs @@ -33,7 +33,8 @@ namespace BurnOutSharp.ProtectionType new PathMatchSet(new PathMatch("SteamRetailInstaller", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamRetailInstaller.dmg", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamService.exe", useEndsWith: true), "Steam"), - new PathMatchSet(new PathMatch("SteamSetup.exe", useEndsWith: true), "Steam"), + new PathMatchSet(new PathMatch("SteamSetup.exe", useEndsWith: true), "Steam"), + new PathMatchSet(new PathMatch("steamxboxutil64.exe", useEndsWith: true), "Steam"), }; return MatchUtil.GetAllMatches(files, matchers, any: true); @@ -66,6 +67,7 @@ namespace BurnOutSharp.ProtectionType new PathMatchSet(new PathMatch("SteamRetailInstaller.dmg", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamService.exe", useEndsWith: true), "Steam"), new PathMatchSet(new PathMatch("SteamSetup.exe", useEndsWith: true), "Steam"), + new PathMatchSet(new PathMatch("steamxboxutil64.exe", useEndsWith: true), "Steam"), }; return MatchUtil.GetFirstMatch(path, matchers, any: true);