From f76527d14fb8dfcfaf2ce126ecd06819f050d5cf Mon Sep 17 00:00:00 2001 From: Alessandro Toia Date: Thu, 19 Jan 2023 18:32:59 -0800 Subject: [PATCH] Revert "Fix reporting temp of AMD zen4 CPUs" This reverts commit edac405d57933018b0cded266c7f7c47975d8a92. Didn't actually fix the issue oops --- src/cpu.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cpu.cpp b/src/cpu.cpp index 5ffa3970..f48c6663 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -437,8 +437,7 @@ bool CPUStats::GetCpuFile() { break; } else if ((name == "zenpower" || name == "k10temp")) { - if (!find_temp_input(path, input, "Tdie")) - find_temp_input(path, input, "Tctl"); + find_temp_input(path, input, "Tdie"); break; } else if (name == "atk0110") { find_temp_input(path, input, "CPU Temperature");