mirror of
https://github.com/SabreTools/MPF.git
synced 2026-04-26 16:19:28 +00:00
* Verify securom sector count * Make securom enum internal * Fix bugs * Don't set explicit var in test * Deal with review * Fix mistake * Oops * Proper DIC securom sector count * fix names
14 lines
288 B
C#
14 lines
288 B
C#
namespace MPF.Processors
|
|
{
|
|
/// <summary>
|
|
/// Enum for SecuROM scheme type
|
|
/// </summary>
|
|
internal enum SecuROMScheme
|
|
{
|
|
Unknown,
|
|
PreV3, // 216 Sectors
|
|
V3, // 90 Sectors
|
|
V4, // 99 Sectors
|
|
V4Plus, // 11 Sectors
|
|
}
|
|
} |