Skip to content

Commit

Permalink
RFX_OFX_Utils: fix copy-paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jul 5, 2019
1 parent bf416e1 commit 488d89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helpers/RFX_OFX_Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ static void getAllParamData(int pluginIndex, const OfxRectI& dstRect, MyInstance
myData->sequenceDataP->floatValue[i][0] = (float)myR;
myData->sequenceDataP->floatValue[i][1] = (float)myG;
myData->sequenceDataP->floatValue[i][2] = (float)myB;
myData->sequenceDataP->floatValue[i][2] = (float)myA;
myData->sequenceDataP->floatValue[i][3] = (float)myA;
} else if (globalData[pluginIndex].param[i].paramType == PT_POINT) {
// point parameter is in % in gmic: no need to scale
double myX, myY;
Expand Down

0 comments on commit 488d89b

Please sign in to comment.