sysclk: fix uv3 cappings

This commit is contained in:
souldbminersmwc
2026-02-01 15:27:17 -05:00
parent 2376b85d3a
commit bf8a6c4785

View File

@@ -1053,6 +1053,13 @@ public:
protected:
void listUI() override {
Result rc = sysclkIpcGetConfigValues(this->configList); // populate config list early otherwise wont work
if (R_FAILED(rc)) [[unlikely]] {
FatalGui::openWithResultCode("sysclkIpcGetConfigValues", rc);
return;
}
this->listElement->addItem(new tsl::elm::CategoryHeader("GPU Custom Table (mV)"));
ValueThresholds MgpuVmaxThresholds(800, 850);