1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-09-05 02:32:18 +00:00

Get the value of powertune in get_stats.

This commit is contained in:
Con Kolivas 2011-09-04 23:14:36 +10:00
parent 7711c6fbd5
commit 656bacc5a9

1
adl.c
View File

@ -461,6 +461,7 @@ bool gpu_stats(int gpu, float *temp, int *engineclock, int *memclock, float *vdd
} }
*fanspeed = __gpu_fanspeed(ga); *fanspeed = __gpu_fanspeed(ga);
*fanpercent = __gpu_fanpercent(ga); *fanpercent = __gpu_fanpercent(ga);
*powertune = __gpu_powertune(ga);
return true; return true;
} }