Reformat prng

This commit is contained in:
2026-01-02 00:38:44 +00:00
parent 7e21961943
commit 24716505be

View File

@@ -70,7 +70,7 @@ u64 wapp_prng_xorshift_256p(XOR256State *state) {
state->w ^= state->x;
state->y ^= t;
state->x = rol64(state->x, 45);
state->x = rol64(state->x, 45);
return result;
}