Skip to content

Commit

Permalink
compatibility fix for POA SDK 3.6.1 (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijessen committed Jan 23, 2024
1 parent 3bb903c commit ebe3c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indi-playerone/playerone_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ bool POABase::ISNewSwitch(const char *dev, const char *name, ISState *states, ch
LOGF_DEBUG("Setting %s=%.2f...", num.label, num.value);

POAConfigValue confVal;
confVal.floatValue = num.value;
confVal.intValue = num.value;
POAErrors ret = POASetConfig(mCameraInfo.cameraID, numCtrlCap->configID, confVal, swAuto);
if (ret != POA_OK)
{
Expand Down

0 comments on commit ebe3c13

Please sign in to comment.