This commit is contained in:
jane 2021-05-26 12:11:41 -04:00
parent 038dd3b7d4
commit 7ec822a116
1 changed files with 2 additions and 2 deletions

View File

@ -55,9 +55,9 @@ export function tick() {
fade(i);
}
}
else if (pixel_cache[i] != next_pattern[i]) {
else if (pixel_cache[i] != pixels[i]) {
console.log("PATTERN NOT STORED " + i);
pixel_cache[i] = next_pattern[i];
pixel_cache[i] = pixels[i];
}
}
if (!changed) {