mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-08-07 08:29:21 +00:00
Change fileContent to sectionContent in SmartE
This commit is contained in:
@@ -71,7 +71,7 @@ namespace BurnOutSharp.ProtectionType
|
||||
/// <summary>
|
||||
/// Check a section for the SmartE string(s)
|
||||
/// </summary>
|
||||
private string GetMatchForSection(SectionHeader section, string file, byte[] fileContent, bool includeDebug)
|
||||
private string GetMatchForSection(SectionHeader section, string file, byte[] sectionContent, bool includeDebug)
|
||||
{
|
||||
if (section == null)
|
||||
return null;
|
||||
@@ -86,7 +86,7 @@ namespace BurnOutSharp.ProtectionType
|
||||
"SmartE"),
|
||||
};
|
||||
|
||||
return MatchUtil.GetFirstMatch(file, fileContent, matchers, includeDebug);
|
||||
return MatchUtil.GetFirstMatch(file, sectionContent, matchers, includeDebug);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user