From 53bf78181c3e11b8a80ab9a46b77315117249848 Mon Sep 17 00:00:00 2001 From: souldbminersmwc Date: Sat, 30 May 2026 17:51:22 -0400 Subject: [PATCH] hoc: make hiopt default yet again --- Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp | 2 +- Source/hoc-clk/overlay/src/ui/gui/config_info_strings.cpp | 4 ++-- Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp b/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp index f3aa68ad..3fd708bf 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/customize.cpp @@ -113,7 +113,7 @@ volatile CustomizeTable C = { .eristaGpuUV = 0, .eristaGpuVmin = 810, -.marikoGpuUV = 0, +.marikoGpuUV = 2, /* Vmin past 795mV won't work due boot voltage being 800mV (can be adjusted though). */ .marikoGpuVmin = 610, .marikoGpuBootVolt = 800, /* Used during boot and when temp is <20°C */ diff --git a/Source/hoc-clk/overlay/src/ui/gui/config_info_strings.cpp b/Source/hoc-clk/overlay/src/ui/gui/config_info_strings.cpp index dacbeeeb..dac0f7a8 100644 --- a/Source/hoc-clk/overlay/src/ui/gui/config_info_strings.cpp +++ b/Source/hoc-clk/overlay/src/ui/gui/config_info_strings.cpp @@ -467,9 +467,9 @@ std::vector ConfigInfoStrings(HocClkConfigValue val, bool isMariko, return { "GPU undervolt level", "Options:", - " - No Undervolt: No Undervolt...", + " - No Undervolt: No Undervolt, HOS default", " - SLT Table: NVIDIA custom SLT Table", - " - HiOPT: L4T Custom HiOPT table", + " - HiOPT: L4T Custom HiOPT table, HOC Default", " - HiOPT - 15mV: L4T Custom HiOPT table with a 15mV offset", " - High UV: The highest undervolt table", "Default: No Undervolt" diff --git a/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp b/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp index dfe9f887..7b9d22cd 100644 --- a/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp +++ b/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp @@ -2247,9 +2247,9 @@ protected: this->listElement->addItem(new CompactCategoryHeader("GPU Settings")); std::vector gpuUvConfM = { - NamedValue("No Undervolt", 0), + NamedValue("No Undervolt", 0, "HOS Default"), NamedValue("SLT Table", 1), - NamedValue("HiOPT Table", 2), + NamedValue("HiOPT Table", 2, "HOC Default"), NamedValue("HiOPT - 15mV", 3), NamedValue("High UV Table", 4), };