C64Lib.Core.Prefs.Prefs C# (CSharp) Method

Prefs() public method

public Prefs ( ) : System
return System
        public Prefs()
        {
            NormalCycles = 63;
            BadLineCycles = 23;
            CIACycles = 63;
            FloppyCycles = 64;
            SkipFrames = 2;
            LatencyMin = 80;
            LatencyMax = 120;
            LatencyAvg = 280;
            ScalingNumerator = 2;
            ScalingDenominator = 2;

            for (int i = 0; i < 4; i++)
            {
                DriveType[i] = C64Lib.Core.DriveType.DRVTYPE_D64;
            }

            //DrivePath[0] = "64prgs";
            //DrivePath[0] = string.Empty;
            DrivePath[0] = "C:/Temp/COMMANDO.D64";

            ViewPort = "Default";
            DisplayMode ="Default";

            SIDType = SIDType.SIDTYPE_NONE;
            REUSize = REUSize.REU_NONE;
            DisplayType = DisplayType.DISPTYPE_WINDOW;

            SpritesOn = true;
            SpriteCollisions = true;
            Joystick1On = false;
            Joystick2On = false;
            JoystickSwap = false;
            LimitSpeed = true;
            FastReset = false;
            CIAIRQHack = false;
            MapSlash = true;
            Emul1541Proc = false;
            SIDFilters = true;
            DoubleScan = true;
            HideCursor = false;
            DirectSound = true;
            ExclusiveSound = false;
            AutoPause = false;
            PrefsAtStartup = false;
            SystemMemory = false;
            AlwaysCopy = false;
            SystemKeys = true;
            ShowLEDs = true;
        }