This commit is contained in:
Serhiy Mytrovtsiy
2022-03-06 12:33:45 +01:00
parent fbdc3f9e24
commit 7cd57770a1
4 changed files with 5 additions and 5 deletions

View File

@@ -99,7 +99,7 @@ internal class SensorsReader: Reader<[Sensor_p]> {
var cpuSensors = self.list.filter({ $0.group == .CPU && $0.type == .temperature && $0.average }).map{ $0.value }
var gpuSensors = self.list.filter({ $0.group == .GPU && $0.type == .temperature && $0.average }).map{ $0.value }
var fanSensors = self.list.filter({ $0.type == .fan && !$0.isComputed }).map{ $0.value }
let fanSensors = self.list.filter({ $0.type == .fan && !$0.isComputed }).map{ $0.value }
#if arch(arm64)
if self.HIDState {