Fixed TBalancer reading on hardware that uses 88 (instead of 255) as frame identifier.

This commit is contained in:
Michael Möller
2010-03-06 21:50:22 +00:00
parent 6ba8cc5dd5
commit 299eb1cdb7

View File

@@ -178,7 +178,7 @@ namespace OpenHardwareMonitor.Hardware.TBalancer {
return;
}
if (data[1] == 255) { // bigNG
if (data[1] == 255 || data[1] == 88) { // bigNG
if (data[274] != protocolVersion)
return;