Ejemplo n.º 1
0
 public void NewPrefs(Prefs prefs)
 {
     open_close_renderer(GlobalPrefs.ThePrefs.SIDType, prefs.SIDType);
     if (the_renderer != null)
         the_renderer.NewPrefs(prefs);
 }
Ejemplo n.º 2
0
 internal void NewPrefs(Prefs prefs)
 {
     //throw new Exception("The method or operation is not implemented.");
 }
Ejemplo n.º 3
0
        public void NewPrefs(Prefs prefs)
        {
            open_close_joysticks(GlobalPrefs.ThePrefs.Joystick1On, GlobalPrefs.ThePrefs.Joystick2On, prefs.Joystick1On, prefs.Joystick2On);
            patch_kernel(prefs.FastReset, prefs.Emul1541Proc);

            TheDisplay.NewPrefs(prefs);

            TheIEC.NewPrefs(prefs);
            TheJob1541.NewPrefs(prefs);

            TheREU.NewPrefs(prefs);
            TheSID.NewPrefs(prefs);

            // Reset 1541 processor if turned on
            if (!GlobalPrefs.ThePrefs.Emul1541Proc && prefs.Emul1541Proc)
                TheCPU1541.AsyncReset();
        }
Ejemplo n.º 4
0
 public void NewPrefs(Prefs prefs)
 {
     open_close_reu(GlobalPrefs.ThePrefs.REUSize, prefs.REUSize);
 }