From e376e6fb537477b6f01a2fb7008ff0df52051821 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 27 Jan 2024 23:19:42 +1100 Subject: [PATCH] [host] app: revert unintended change from last commit --- host/src/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/src/app.c b/host/src/app.c index bae211012..6dc17afca 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -398,7 +398,7 @@ static bool captureStart(void) return false; } - if (app.iface->start && app.iface->start()) + if (app.iface->start && !app.iface->start()) { DEBUG_ERROR("Failed to start the capture device"); return false;