예제 #1
0
 public Configuration()
 {
     RecentFiles = new RecentItems();
     Debug       = new DebugInfo();
     Video       = new VideoConfig();
     Audio       = new AudioConfig();
     Input       = new InputConfig();
     Emulation   = new EmulationConfig();
     Preferences = new PreferencesConfig();
     AviRecord   = new AviRecordConfig();
 }
예제 #2
0
        public InputConfig Clone()
        {
            InputConfig cfg = (InputConfig)this.MemberwiseClone();

            cfg.Controllers = new ControllerConfig[5];
            for (int i = 0; i < 5; i++)
            {
                cfg.Controllers[i] = Controllers[i];
            }
            return(cfg);
        }
예제 #3
0
 public Configuration()
 {
     RecentFiles = new RecentItems();
     Debug       = new DebugInfo();
     Video       = new VideoConfig();
     Audio       = new AudioConfig();
     Input       = new InputConfig();
     Emulation   = new EmulationConfig();
     Preferences = new PreferencesConfig();
     AviRecord   = new AviRecordConfig();
     MovieRecord = new MovieRecordConfig();
     Cheats      = new CheatWindowConfig();
     Netplay     = new NetplayConfig();
 }