diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs
index 9de41efb..aaf564b0 100644
--- a/BurnOutSharp/FileType/Executable.cs
+++ b/BurnOutSharp/FileType/Executable.cs
@@ -251,7 +251,7 @@ namespace BurnOutSharp.FileType
#region Packers
// If we're looking for packers too, run scans
- if (scanner.IncludePackers)
+ if (scanner.ScanPackers)
{
// Armadillo
diff --git a/BurnOutSharp/Scanner.cs b/BurnOutSharp/Scanner.cs
index f466c09e..d6d13907 100644
--- a/BurnOutSharp/Scanner.cs
+++ b/BurnOutSharp/Scanner.cs
@@ -34,7 +34,7 @@ namespace BurnOutSharp
///
/// Determines if packers are counted as detected protections or not
///
- public bool IncludePackers { get; set; } = false;
+ public bool ScanPackers { get; set; } = false;
///
/// Constructor
diff --git a/Test/Program.cs b/Test/Program.cs
index f718eb50..848f682d 100644
--- a/Test/Program.cs
+++ b/Test/Program.cs
@@ -19,7 +19,7 @@ namespace Test
IncludePosition = true,
ScanAllFiles = false,
ScanArchives = true,
- IncludePackers = true,
+ ScanPackers = true,
};
foreach (string arg in args)