Fix freebsd build by fixing incorrect use of SystemTimePoint when we want TimePoint
This commit is contained in:
parent
738c252948
commit
6d3c6330df
|
@ -746,7 +746,7 @@ void MonitorStream::runStream() {
|
|||
frame_count++;
|
||||
frame_count++;
|
||||
} else {
|
||||
SystemTimePoint::duration actual_delta_time = now - last_frame_sent;
|
||||
TimePoint::duration actual_delta_time = now - last_frame_sent;
|
||||
if (actual_delta_time > Seconds(5)) {
|
||||
if (paused_image) {
|
||||
// Send keepalive
|
||||
|
|
Loading…
Reference in New Issue