From 1117aff83bed50291b49dd49fe3e7be2f978d930 Mon Sep 17 00:00:00 2001 From: Mr-Dave Date: Wed, 31 Jul 2024 23:47:19 -0600 Subject: [PATCH] Fix netcam high resolution --- src/motion_loop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/motion_loop.cpp b/src/motion_loop.cpp index f1f4120..d381fde 100644 --- a/src/motion_loop.cpp +++ b/src/motion_loop.cpp @@ -427,7 +427,7 @@ int mlp_cam_next(ctx_dev *cam, ctx_image_data *img_data) retcd = cam->netcam->next(img_data); if ((retcd == CAPTURE_SUCCESS) && (cam->netcam_high != nullptr)) { - retcd = cam->netcam->next(img_data); + retcd = cam->netcam_high->next(img_data); } cam->rotate->process(img_data); } else if (cam->camera_type == CAMERA_TYPE_V4L2) {