From 54703820534ccd874e0445976b62c8413b5a19bc Mon Sep 17 00:00:00 2001 From: Eric Claeys <83164203+EricClaeys@users.noreply.github.com> Date: Mon, 6 Jan 2025 19:18:58 -0600 Subject: [PATCH] Update capture_ZWO.cpp: don't set gamma --- src/capture_ZWO.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/capture_ZWO.cpp b/src/capture_ZWO.cpp index 12cf71747..17ff9e0ee 100644 --- a/src/capture_ZWO.cpp +++ b/src/capture_ZWO.cpp @@ -1071,8 +1071,6 @@ int main(int argc, char *argv[]) // Other calls to setControl() are done after we know if we're in daytime or nighttime. if (CG.asiBandwidth != NOT_CHANGED) setControl(CG.cameraNumber, ASI_BANDWIDTHOVERLOAD, CG.asiBandwidth, CG.asiAutoBandwidth ? ASI_TRUE : ASI_FALSE); - if (CG.gamma != NOT_CHANGED) - setControl(CG.cameraNumber, ASI_GAMMA, CG.gamma, ASI_FALSE); if (CG.flip != NOT_CHANGED) setControl(CG.cameraNumber, ASI_FLIP, CG.flip, ASI_FALSE);