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
This commit is contained in:
parent
ee50a8c42e
commit
52b83eb813
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue