Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openhardwaremonitor/openhardwaremonitor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Möller <mmoeller@openhardwaremonitor.org>2014-12-31 00:04:54 +0300
committerMichael Möller <mmoeller@openhardwaremonitor.org>2014-12-31 00:04:54 +0300
commitbf8d491ef28c2793e284189b518c06d24e35b0f4 (patch)
tree4d5a4b730540f9f2517df858069d47d2a09b4493
parentebeb96c648571655cf620b7fe68dd8499f65f0a9 (diff)
Fixed Issue 651.
-rw-r--r--Hardware/Nvidia/NvidiaGPU.cs2
-rw-r--r--Properties/AssemblyVersion.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Hardware/Nvidia/NvidiaGPU.cs b/Hardware/Nvidia/NvidiaGPU.cs
index 4f6b5d0..8d387b3 100644
--- a/Hardware/Nvidia/NvidiaGPU.cs
+++ b/Hardware/Nvidia/NvidiaGPU.cs
@@ -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);
}
diff --git a/Properties/AssemblyVersion.cs b/Properties/AssemblyVersion.cs
index 3ea6451..30f67a7 100644
--- a/Properties/AssemblyVersion.cs
+++ b/Properties/AssemblyVersion.cs
@@ -10,5 +10,5 @@
using System.Reflection;
-[assembly: AssemblyVersion("0.6.0.17")]
-[assembly: AssemblyInformationalVersion("0.6.0.17 Alpha")] \ No newline at end of file
+[assembly: AssemblyVersion("0.7.0.0")]
+[assembly: AssemblyInformationalVersion("0.7.0 Beta")] \ No newline at end of file