convert function to relevant capturing/analysing

This commit is contained in:
Isaac Connor 2022-01-07 11:52:19 -05:00
parent 2ba0757fca
commit 657fc5cad5
1 changed files with 6 additions and 6 deletions

View File

@ -46,8 +46,8 @@ bool StreamBase::loadMonitor(int p_monitor_id) {
return false; return false;
} }
if ( monitor->GetFunction() == Monitor::NONE ) { if (monitor->Capturing() == Monitor::CAPTURING_NONE) {
Info("Monitor %d has function NONE. Will not be able to connect to it.", monitor_id); Info("Monitor %d has capturing == NONE. Will not be able to connect to it.", monitor_id);
return false; return false;
} }
@ -69,8 +69,8 @@ bool StreamBase::checkInitialised() {
Error("Cannot stream, not initialised"); Error("Cannot stream, not initialised");
return false; return false;
} }
if (monitor->GetFunction() == Monitor::NONE) { if (monitor->Capturing() == Monitor::CAPTURING_NONE) {
Info("Monitor %d has function NONE. Will not be able to connect to it.", monitor_id); Info("Monitor %d has capturing == NONE. Will not be able to connect to it.", monitor_id);
return false; return false;
} }
if (!monitor->ShmValid()) { if (!monitor->ShmValid()) {