mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-15 21:35:34 +00:00
14 lines
276 B
C#
14 lines
276 B
C#
|
|
namespace BurnOutSharp.ProtectionType
|
|||
|
|
{
|
|||
|
|
public class AlphaROM
|
|||
|
|
{
|
|||
|
|
public static string CheckContents(string fileContent)
|
|||
|
|
{
|
|||
|
|
if (fileContent.Contains("SETTEC"))
|
|||
|
|
return "Alpha-ROM";
|
|||
|
|
|
|||
|
|
return null;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|