Skip to content

Commit

Permalink
Update allsky_common.cpp: fix case of determinefocus
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Oct 27, 2023
1 parent b89d120 commit 4db2b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/allsky_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
Expand Down

0 comments on commit 4db2b5f

Please sign in to comment.