We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e638b7b commit 6fdbdd9Copy full SHA for 6fdbdd9
BinaryObjectScanner/Protection/GFWL.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.IO;
4
using BinaryObjectScanner.Interfaces;
5
using SabreTools.Matching;
6
using SabreTools.Matching.Paths;
@@ -51,6 +52,7 @@ public List<string> CheckDirectoryPath(string path, List<string>? files)
51
52
new(new FilePathMatch("Gfwlivesetup.exe"), "Games for Windows LIVE"),
53
new(new FilePathMatch("xliveinstall.dll"), "Games for Windows LIVE"),
54
new(new FilePathMatch("XLiveRedist.msi"), "Games for Windows LIVE"),
55
+ new(new PathMatch($"{Path.DirectorySeparatorChar}XLiveRedist"), "Games for Windows LIVE"),
56
};
57
58
return MatchUtil.GetFirstMatch(path, matchers, any: true);
0 commit comments