Clarify that only ASCII is supported

This commit is contained in:
Anuken
2023-11-27 20:47:24 -05:00
parent e1ffc4ed62
commit bc308847f4
2 changed files with 4 additions and 2 deletions

View File

@@ -1005,7 +1005,9 @@ public class LExecutor{
curX = exec.numi(x); //reset
continue;
}
exec.graphicsBuffer.add(DisplayCmd.get(LogicDisplay.commandPrint, packSign(curX + xOffset), packSign(curY + yOffset), next, 0, 0, 0));
if(Fonts.logic.getData().hasGlyph(next)){
exec.graphicsBuffer.add(DisplayCmd.get(LogicDisplay.commandPrint, packSign(curX + xOffset), packSign(curY + yOffset), next, 0, 0, 0));
}
curX += advance;
}