tasr
This commit is contained in:
parent
038dd3b7d4
commit
7ec822a116
1 changed files with 2 additions and 2 deletions
|
@ -55,9 +55,9 @@ export function tick() {
|
||||||
fade(i);
|
fade(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (pixel_cache[i] != next_pattern[i]) {
|
else if (pixel_cache[i] != pixels[i]) {
|
||||||
console.log("PATTERN NOT STORED " + i);
|
console.log("PATTERN NOT STORED " + i);
|
||||||
pixel_cache[i] = next_pattern[i];
|
pixel_cache[i] = pixels[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!changed) {
|
if (!changed) {
|
||||||
|
|
Loading…
Reference in a new issue