From 299e4c0d4a3687604717ff9e9077fb7d35a4baef Mon Sep 17 00:00:00 2001 From: hanabbi Date: Thu, 22 Jun 2023 15:35:01 +0900 Subject: [PATCH] fix wrong table --- Source/sys-clk-OC/sysmodule/src/file_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/sys-clk-OC/sysmodule/src/file_utils.cpp b/Source/sys-clk-OC/sysmodule/src/file_utils.cpp index c1255913..9cadebb6 100644 --- a/Source/sys-clk-OC/sysmodule/src/file_utils.cpp +++ b/Source/sys-clk-OC/sysmodule/src/file_utils.cpp @@ -304,7 +304,7 @@ Result FileUtils::CustParser(const char* filepath, size_t filesize) { LogLine("Set MEM Vdd2 volt to %u mV: %s", mvolt, R_FAILED(res) ? "Failed" : "OK"); } - cpu_dvfs_table = table.marikoCpuUV ? &table.marikoCpuDvfsTable : &table.marikoCpuDvfsTableSLT; + cpu_dvfs_table = table.marikoCpuUV ? &table.marikoCpuDvfsTableSLT : &table.marikoCpuDvfsTable; switch (table.marikoGpuUV) { case 0: gpu_dvfs_table = &table.marikoGpuDvfsTable;