From 299eb1cdb77c9b54e5166ee5c5ecf22f48e781e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=B6ller?= Date: Sat, 6 Mar 2010 21:50:22 +0000 Subject: [PATCH] Fixed TBalancer reading on hardware that uses 88 (instead of 255) as frame identifier. --- Hardware/TBalancer/TBalancer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hardware/TBalancer/TBalancer.cs b/Hardware/TBalancer/TBalancer.cs index cdbd69f..e36074b 100644 --- a/Hardware/TBalancer/TBalancer.cs +++ b/Hardware/TBalancer/TBalancer.cs @@ -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;