hocclk: console specific changes

This commit is contained in:
souldbminersmwc
2026-04-20 19:19:40 -04:00
parent 55b97156ce
commit aaa9f90794
3 changed files with 15 additions and 13 deletions

View File

@@ -743,7 +743,7 @@ protected:
ValueThresholds displayThresholds(60, 65);
addConfigButton(
HocClkConfigValue_MaxDisplayClockH,
"Max Handheld Display",
"Max Handheld Display Hz",
ValueRange(60, IsAula() ? 65 : 75, 1, " Hz", 1),
"Display Clock",
&displayThresholds,
@@ -752,16 +752,18 @@ protected:
false
);
}
addConfigButton(
HocClkConfigValue_DisplayVoltage,
"Display Voltage",
ValueRange(800, 1200, 25, " mV", 1),
"Display Voltage",
&thresholdsDisabled,
{},
{},
false
);
if(!IsAula()) {
addConfigButton(
HocClkConfigValue_DisplayVoltage,
"Display Voltage",
ValueRange(800, 1200, 25, " mV", 1),
"Display Voltage",
&thresholdsDisabled,
{},
{},
false
);
}
}
};