| 434 | } |
| 435 | |
| 436 | void CPageConfig::ResetToDefault() |
| 437 | { |
| 438 | const eApple2Type apple2Type = A2TYPE_APPLE2EENHANCED; |
| 439 | m_PropertySheetHelper.GetConfigNew().m_Apple2Type = apple2Type; |
| 440 | m_PropertySheetHelper.GetConfigNew().m_CpuType = ProbeMainCpuDefault(apple2Type); |
| 441 | |
| 442 | m_PropertySheetHelper.GetConfigNew().m_confirmReboot = kConfirmReboot_Default; |
| 443 | m_PropertySheetHelper.GetConfigNew().m_masterVolume = kUserVolume_Default; |
| 444 | |
| 445 | m_PropertySheetHelper.GetConfigNew().m_videoType = VT_DEFAULT; |
| 446 | m_PropertySheetHelper.GetConfigNew().m_videoStyle = VS_DEFAULT; |
| 447 | m_PropertySheetHelper.GetConfigNew().m_videoRefreshRate = VR_DEFAULT; |
| 448 | m_PropertySheetHelper.GetConfigNew().m_monochromeRGB = Video::MONO_COLOR_DEFAULT; |
| 449 | |
| 450 | m_PropertySheetHelper.GetConfigNew().m_fullScreen_ShowSubunitStatus = Win32Frame::kFullScreen_ShowSubunitStatus_Default; |
| 451 | |
| 452 | m_PropertySheetHelper.GetConfigNew().m_enhanceDiskAccessSpeed = kEnhanceDiskAccessSpeed_Default; |
| 453 | m_PropertySheetHelper.GetConfigNew().m_scrollLockToggle = kScrollLockToggle_Default; |
| 454 | m_PropertySheetHelper.GetConfigNew().m_machineSpeed = kMachineSpeed_Default; |
| 455 | } |
nothing calls this directly
no test coverage detected