Skip to content

Commit ed06ef4

Browse files
committed
Revert change
1 parent 07c17af commit ed06ef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controller.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ ULONG AsusDLL::get_thermal()
182182
TherGPU thermal_gpu = (TherGPU)GetProcAddress(asus_dll, "Thermal_Read_GpuTS1L_Temperature");
183183
current_cpu_thermal = thermal_cpu();
184184
current_gpu_thermal = thermal_gpu();
185-
current_combined_thermal = max(current_cpu_thermal, current_gpu_thermal*5/4); // GPU overheats faster than CPU, but not too much
185+
current_combined_thermal = max(current_cpu_thermal, current_gpu_thermal);
186186
last_update_thermal = convert_to_ull(st);
187187

188188
return current_combined_thermal;

0 commit comments

Comments
 (0)