Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuscu committed Sep 6, 2024
1 parent a1619cc commit 0be7680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodegraph/source/common/NodeGraphOperations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ namespace l::nodegraph {

for (int32_t i = 0; i < numSamples; i++) {
output[mCurIndex] = *value++;
mCurIndex = ++mCurIndex % outputSize;
mCurIndex = (mCurIndex + 1) % outputSize;
}
}

Expand Down

0 comments on commit 0be7680

Please sign in to comment.