Skip to content

Commit

Permalink
Fix error with missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkRivers committed Nov 14, 2024
1 parent f48dfbc commit 0ed979a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ADApp/pluginSrc/NDPluginProcess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,17 @@ void NDPluginProcess::processCallbacks(NDArray *pArray)
getDoubleParam (NDPluginProcessScale, &scale);
getDoubleParam (NDPluginProcessOffset, &offset);
}
if (enableLowClip)
if (enableLowClip) {
getDoubleParam (NDPluginProcessLowClipThresh, &lowClipThresh);
getDoubleParam (NDPluginProcessLowClipValue, &lowClipValue);
if (enableHighClip)
}
if (enableHighClip) {
getDoubleParam (NDPluginProcessHighClipThresh, &highClipThresh);
getDoubleParam (NDPluginProcessHighClipValue, &highClipValue);
if (resetFilter)
}
if (resetFilter) {
setIntegerParam(NDPluginProcessResetFilter, 0);
}
if (enableFilter) {
getIntegerParam(NDPluginProcessNumFilter, &numFilter);
getDoubleParam (NDPluginProcessOOffset, &oOffset);
Expand Down

0 comments on commit 0ed979a

Please sign in to comment.