From ef9d7737cebbe77ff9e150b98ced3b7c68a92f7f Mon Sep 17 00:00:00 2001 From: Alfred <59073967+slimer37@users.noreply.github.com> Date: Sat, 21 Dec 2024 02:33:01 -0800 Subject: [PATCH] Add missing closing quote in arduino_single mode comments --- js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index b9de561..68c6073 100644 --- a/js/script.js +++ b/js/script.js @@ -948,7 +948,7 @@ function generateOutputString() { images.each((image) => { code = imageToString(image); code = `\t${code.split('\n').join('\n\t')}\n`; - comment = `\t// '${image.glyph}, ${image.canvas.width}x${image.canvas.height}px\n`; + comment = `\t// '${image.glyph}', ${image.canvas.width}x${image.canvas.height}px\n`; outputString += comment + code; if (image.glyph.length === 1) { useGlyphs++;