Skip to content

Commit

Permalink
Revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
Legend0fHell committed Feb 24, 2024
1 parent 07c17af commit ed06ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ ULONG AsusDLL::get_thermal()
TherGPU thermal_gpu = (TherGPU)GetProcAddress(asus_dll, "Thermal_Read_GpuTS1L_Temperature");
current_cpu_thermal = thermal_cpu();
current_gpu_thermal = thermal_gpu();
current_combined_thermal = max(current_cpu_thermal, current_gpu_thermal*5/4); // GPU overheats faster than CPU, but not too much
current_combined_thermal = max(current_cpu_thermal, current_gpu_thermal);
last_update_thermal = convert_to_ull(st);

return current_combined_thermal;
Expand Down

0 comments on commit ed06ef4

Please sign in to comment.