From 8f3637d4a4aea1c292349811a11215fcb3373286 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Fri, 13 Mar 2015 21:29:14 +0000 Subject: [PATCH] adjust the limit for the green LED --- src/clientdlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/clientdlg.cpp b/src/clientdlg.cpp index fdd9c6a0..98887241 100755 --- a/src/clientdlg.cpp +++ b/src/clientdlg.cpp @@ -928,10 +928,10 @@ void CClientDlg::OnPingTimeResult ( int iPingTime ) // calculate overall delay const int iOverallDelayMs = pClient->EstimatedOverallDelay ( iPingTime ); - // color definition: <= 42 ms green, <= 70 ms yellow, otherwise red + // color definition: <= 45 ms green, <= 70 ms yellow, otherwise red CMultiColorLED::ELightColor eOverallDelayLEDColor; - if ( iOverallDelayMs <= 42 ) + if ( iOverallDelayMs <= 45 ) { eOverallDelayLEDColor = CMultiColorLED::RL_GREEN; }