mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-09-03 07:45:35 +00:00
Fixed Issue 651.
This commit is contained in:
@@ -57,7 +57,7 @@ namespace OpenHardwareMonitor.Hardware.Nvidia {
|
||||
int value;
|
||||
if (NVAPI.NvAPI_GPU_GetTachReading != null &&
|
||||
NVAPI.NvAPI_GPU_GetTachReading(handle, out value) == NvStatus.OK) {
|
||||
if (value > 0) {
|
||||
if (value >= 0) {
|
||||
fan = new Sensor("GPU", 0, SensorType.Fan, this, settings);
|
||||
ActivateSensor(fan);
|
||||
}
|
||||
|
@@ -10,5 +10,5 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.6.0.17")]
|
||||
[assembly: AssemblyInformationalVersion("0.6.0.17 Alpha")]
|
||||
[assembly: AssemblyVersion("0.7.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("0.7.0 Beta")]
|
Reference in New Issue
Block a user