sysclk: display max clock rework

This commit is contained in:
souldbminersmwc
2026-03-21 17:51:01 -04:00
parent 0496839500
commit 6e6f7b4f9f
6 changed files with 29 additions and 21 deletions

View File

@@ -533,11 +533,7 @@ void ClockManager::VRRThread(void* arg) {
if(targetHz) {
maxDisplay = targetHz;
} else {
if(Board::GetConsoleType() == HorizonOCConsoleType_Aula) {
maxDisplay = mgr->config->GetConfigValue(HorizonOCConfigValue_EnableUnsafeDisplayFreqs) ? 65 : 60;
} else {
maxDisplay = mgr->config->GetConfigValue(HorizonOCConfigValue_EnableUnsafeDisplayFreqs) ? 72 : 60;
}
maxDisplay = 60;
}
u8 minDisplay = Board::GetConsoleType() == HorizonOCConsoleType_Aula ? 45 : 40;