We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07c17af commit ed06ef4Copy full SHA for ed06ef4
controller.cpp
@@ -182,7 +182,7 @@ ULONG AsusDLL::get_thermal()
182
TherGPU thermal_gpu = (TherGPU)GetProcAddress(asus_dll, "Thermal_Read_GpuTS1L_Temperature");
183
current_cpu_thermal = thermal_cpu();
184
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
+ current_combined_thermal = max(current_cpu_thermal, current_gpu_thermal);
186
last_update_thermal = convert_to_ull(st);
187
188
return current_combined_thermal;
0 commit comments