diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-15 20:37:50 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-15 20:37:50 -0500 |
| commit | 5f6cc197cefc9232fdb7e407b69cdae707379381 (patch) | |
| tree | 996e621fae50aa0f06531f818ffb1acaf2e216e1 /Source/Core | |
| parent | 28a6eb26cc2c98726c59f254e8962eb1209f5578 (diff) | |
DolphinQt: Always enable the "Skip Main Menu" checkbox when "SkipIPL" is disabled.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Settings/GameCubePane.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Settings/GameCubePane.cpp b/Source/Core/DolphinQt/Settings/GameCubePane.cpp index 8c5d306988..568230b3e0 100644 --- a/Source/Core/DolphinQt/Settings/GameCubePane.cpp +++ b/Source/Core/DolphinQt/Settings/GameCubePane.cpp @@ -726,7 +726,7 @@ void GameCubePane::LoadSettings() } } - m_skip_main_menu->setEnabled(have_menu); + m_skip_main_menu->setEnabled(have_menu || !m_skip_main_menu->isChecked()); m_skip_main_menu->setToolTip(have_menu ? QString{} : tr("Put IPL ROMs in User/GC/<region>.")); // Device Settings |
