# HG changeset patch # User moel.mich # Date 1267912222 0 # Node ID 8296f0ba87b11b7de8580824052b2bc237c14242 # Parent c4dfd596a6c37776a3245765507f79dc78738c39 Fixed TBalancer reading on hardware that uses 88 (instead of 255) as frame identifier. diff -r c4dfd596a6c3 -r 8296f0ba87b1 Hardware/TBalancer/TBalancer.cs --- a/Hardware/TBalancer/TBalancer.cs Thu Mar 04 20:26:56 2010 +0000 +++ b/Hardware/TBalancer/TBalancer.cs Sat Mar 06 21:50:22 2010 +0000 @@ -178,7 +178,7 @@ return; } - if (data[1] == 255) { // bigNG + if (data[1] == 255 || data[1] == 88) { // bigNG if (data[274] != protocolVersion) return;