Skip to content
Snippets Groups Projects
Commit fa996864 authored by Florian Angerer's avatar Florian Angerer
Browse files

Fix: 'Rf_copyMatrix' did not properly advance index.

parent 3108fdb4
No related branches found
No related tags found
No related merge requests found
......@@ -983,6 +983,7 @@ public abstract class JavaUpCallsRFFIImpl implements UpCallsRFFI {
int sIdx = 0;
for (int i = 0; i < tLen; i++) {
c.copy(sIdx, i);
sIdx++;
if (sIdx >= sLen) {
sIdx -= sLen;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment