Skip to content

Commit 34e5463

Browse files
authored
Merge pull request #18 from jwlodek/fix-max-size-y
Fix typo when setting max size y
2 parents afd2921 + 23bab53 commit 34e5463

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kinetixApp/src/ADKinetix.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Author: Jakub Wlodek
77
*
88
* Created: 10-Mar-2024
9-
* Last Updated: 26-Jul-2024
9+
* Last Updated: 07-Oct-2024
1010
* Copyright (c): Brookhaven National Laboratory 2024
1111
*/
1212

@@ -635,7 +635,7 @@ ADKinetix::ADKinetix(int deviceIndex, const char *portName)
635635
(void *)&this->cameraContext->sensorResY);
636636

637637
setIntegerParam(ADMaxSizeX, this->cameraContext->sensorResX);
638-
setIntegerParam(ADMaxSizeY, this->cameraContext->sensorResX);
638+
setIntegerParam(ADMaxSizeY, this->cameraContext->sensorResY);
639639
INFO_ARGS("Model: %s | Resolution: %dx%d", modelStr,
640640
this->cameraContext->sensorResX, this->cameraContext->sensorResY);
641641

0 commit comments

Comments
 (0)