quit a bit earlier when stream is broken.

This commit is contained in:
Isaac Connor 2019-08-20 11:13:38 -04:00
parent 7ef26275bc
commit 4a82ce83a7
1 changed files with 3 additions and 1 deletions

View File

@ -920,8 +920,10 @@ void EventStream::runStream() {
} // end if streaming stepping or doing nothing
if ( send_frame ) {
if ( !sendFrame(delta_us) )
if ( !sendFrame(delta_us) ) {
zm_terminate = true;
break;
}
}
curr_stream_time = frame_data->timestamp;