1
0
Fork 0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-07-03 03:56:26 +02:00

Only alter last bit also in non persistent rng mode.

Fixes #99.
This commit is contained in:
kkapsner 2017-01-18 08:46:45 +01:00
parent 6d7a9fc22a
commit 960f3c4f36
2 changed files with 4 additions and 23 deletions

View file

@ -46,7 +46,7 @@
var l = desc.length;
var rng = randomSupply.getRng(l, window);
for (var i = 0; i < l; i += 10){
for (var i = 0; i < l; i += 1){
desc[i] = rng(source[i], i);
}
var canvas = original.cloneNode(true);