This commit is contained in:
awesomeuser 2023-08-04 18:21:23 +00:00
parent fac910240c
commit 093fb3766d

View file

@ -102,7 +102,7 @@
const copy = ctx.createImageData(128, 64); const copy = ctx.createImageData(128, 64);
for (let i = 0; i < copy.data.length; i += 4) { for (let i = 0; i < copy.data.length; i += 4) {
debug.log(i/4); console.log(i/4);
if (bits.substring(i/4, 1) === "0") { if (bits.substring(i/4, 1) === "0") {
copy.data[i+3] = 255; copy.data[i+3] = 255;
} }