| 451 | } |
| 452 | |
| 453 | void ToggleVSSystemGroup(HWND hwnd, bool enable) |
| 454 | { |
| 455 | // VS System Groupbox only enabled when in iNES 2.0 and VS System in System groupbox is chosen |
| 456 | // VS System Groupbox |
| 457 | EnableWindow(GetDlgItem(hwnd, IDC_VS_SYSTEM_GROUP), enable); |
| 458 | // System |
| 459 | EnableWindow(GetDlgItem(hwnd, IDC_VS_SYSTEM_COMBO), enable); |
| 460 | EnableWindow(GetDlgItem(hwnd, IDC_VS_SYSTEM_TEXT), enable); |
| 461 | // PPU |
| 462 | EnableWindow(GetDlgItem(hwnd, IDC_VS_PPU_COMBO), enable); |
| 463 | EnableWindow(GetDlgItem(hwnd, IDC_VS_PPU_TEXT), enable); |
| 464 | } |
| 465 | |
| 466 | void ToggleUnofficialPropertiesEnabled(HWND hwnd, bool ines20, bool check) |
| 467 | { |
no outgoing calls
no test coverage detected