mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
namespace MPF.ExecutionContexts.Redumper
|
|
{
|
|
public static class SettingConstants
|
|
{
|
|
public const string DriveType = "RedumperDriveType";
|
|
public static readonly DriveType DriveTypeDefault = Redumper.DriveType.NONE;
|
|
|
|
public const string EnableSkeleton = "RedumperEnableSkeleton";
|
|
public const bool EnableSkeletonDefault = true;
|
|
|
|
public const string EnableVerbose = "RedumperEnableVerbose";
|
|
public const bool EnableVerboseDefault = false;
|
|
|
|
public const string LeadinRetryCount = "RedumperLeadinRetryCount";
|
|
public const int LeadinRetryCountDefault = 4;
|
|
|
|
public const string DrivePregapStart = "RedumperDrivePregapStart";
|
|
public const int DrivePregapStartDefault = 0;
|
|
|
|
public const string ReadMethod = "RedumperReadMethod";
|
|
public static readonly ReadMethod ReadMethodDefault = Redumper.ReadMethod.NONE;
|
|
|
|
public const string RefineSectorMode = "RedumperRefineSectorMode";
|
|
public const bool RefineSectorModeDefault = false;
|
|
|
|
public const string RereadCount = "RedumperRereadCount";
|
|
public const int RereadCountDefault = 20;
|
|
|
|
public const string SectorOrder = "RedumperSectorOrder";
|
|
public static readonly SectorOrder SectorOrderDefault = Redumper.SectorOrder.NONE;
|
|
}
|
|
}
|