From 4db2b5f3409717b55227b86b15ae0d5fb5e780aa Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Thu, 26 Oct 2023 20:05:33 -0500 Subject: [PATCH] Update allsky_common.cpp: fix case of determinefocus --- src/allsky_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allsky_common.cpp b/src/allsky_common.cpp index 29115ed1b..9a9e9e32c 100644 --- a/src/allsky_common.cpp +++ b/src/allsky_common.cpp @@ -1849,7 +1849,7 @@ bool getCommandLineArguments(config *cg, int argc, char *argv[]) { cg->flip = atol(argv[++i]); } - else if (strcmp(a, "determineFocus") == 0) + else if (strcmp(a, "determinefocus") == 0) { cg->determineFocus = getBoolean(argv[++i]); }