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(); }
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); }
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(); }