Skip to content
Snippets Groups Projects
Commit 6a1f04f9 authored by Adam Welc's avatar Adam Welc
Browse files

A fix to user RNG.

parent f8f2d525
Branches
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ public class JNR_UserRng implements UserRngRFFI {
public void seeds(int[] n) {
Pointer pInt = userRng().user_unif_seedloc();
for (int i = 0; i < n.length; i++) {
n[i] = pInt.getInt(i);
n[i] = pInt.getInt(i * 4);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment