Add missing closing quote in arduino_single mode comments

This commit is contained in:
Alfred
2024-12-21 02:33:01 -08:00
committed by GitHub
parent 840c63e5ec
commit ef9d7737ce
+1 -1
View File
@@ -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++;