From 7079516e091bd37021fbdcb5938df8913b1f9030 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 7 Oct 2021 12:36:28 -0400 Subject: [PATCH] Fix indexing of camera type enum so that printing out from CameraType_Strings works --- src/zm_monitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zm_monitor.h b/src/zm_monitor.h index ef650222b..92b724e65 100644 --- a/src/zm_monitor.h +++ b/src/zm_monitor.h @@ -64,7 +64,7 @@ public: } Function; typedef enum { - LOCAL, + LOCAL=1, REMOTE, FILE, FFMPEG,