Missed an access modifier

This commit is contained in:
Matt Nadareski
2023-03-07 11:12:31 -05:00
parent 42bb29185f
commit 8fdc17b239

View File

@@ -620,7 +620,7 @@ namespace BurnOutSharp.ProtectionType
}
}
public static string GetSafeDiscDrvmgtVersion(string firstMatchedString, IEnumerable<string> files)
internal static string GetSafeDiscDrvmgtVersion(string firstMatchedString, IEnumerable<string> files)
{
if (string.IsNullOrEmpty(firstMatchedString) || !File.Exists(firstMatchedString))
return string.Empty;
@@ -773,7 +773,7 @@ namespace BurnOutSharp.ProtectionType
}
// TODO: Verify these checks and remove any that may not be needed, file version checks should remove the need for any checks for 2.80+.
public static string GetSafeDiscSecdrvVersion(string firstMatchedString, IEnumerable<string> files)
internal static string GetSafeDiscSecdrvVersion(string firstMatchedString, IEnumerable<string> files)
{
if (string.IsNullOrEmpty(firstMatchedString) || !File.Exists(firstMatchedString))
return string.Empty;