From 52b83eb813941bbda8375516556911a0aa89f353 Mon Sep 17 00:00:00 2001 From: stan Date: Fri, 8 Oct 2010 22:42:54 +0000 Subject: [PATCH] Fixed issue with signal loss detection and timestamp label. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3143 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_monitor.cpp b/src/zm_monitor.cpp index cbec8dd26..44f93fe48 100644 --- a/src/zm_monitor.cpp +++ b/src/zm_monitor.cpp @@ -1024,7 +1024,7 @@ bool Monitor::CheckSignal( const Image *image ) break; // Avoid sampling the rows with timestamp in int y = index / (width * colours); - if ( y < label_coord.Y() || y > label_coord.Y()+Image::LINE_HEIGHT ) + if ( y < label_coord.Y() || y <= label_coord.Y()+Image::LINE_HEIGHT ) break; } const unsigned char *ptr = buffer+(index*colours);