diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/ScheduledTasks/FingerprinterTask.cs b/ConfusedPolarBear.Plugin.IntroSkipper/ScheduledTasks/FingerprinterTask.cs index b93b0da..6b5804f 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/ScheduledTasks/FingerprinterTask.cs +++ b/ConfusedPolarBear.Plugin.IntroSkipper/ScheduledTasks/FingerprinterTask.cs @@ -22,7 +22,7 @@ public class FingerprinterTask : IScheduledTask { /// /// Maximum number of bits (out of 32 total) that can be different between segments before they are considered dissimilar. /// - private const double MAXIMUM_DIFFERENCES = 5; + private const double MAXIMUM_DIFFERENCES = 3; /// /// Maximum time permitted between timestamps before they are considered non-contiguous. @@ -309,7 +309,7 @@ public class FingerprinterTask : IScheduledTask { var rhsPosition = i + rightOffset; var diff = lhs[lhsPosition] ^ rhs[rhsPosition]; - // If the difference between the samples is small (< 5/32), flag both times as similar. + // If the difference between the samples is small, flag both times as similar. if (countBits(diff) > MAXIMUM_DIFFERENCES) { continue;