From 7d3140710533d6754e2b3099ff8349c2d7e90600 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Fri, 23 Oct 2020 16:57:05 +0200 Subject: [PATCH] Include greek letters in extended atlas --- Sources/arm/Translator.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/arm/Translator.hx b/Sources/arm/Translator.hx index 189e7c25..d60b4a29 100644 --- a/Sources/arm/Translator.hx +++ b/Sources/arm/Translator.hx @@ -65,6 +65,8 @@ class Translator { // Generate extended font atlas // Basic Latin + Latin-1 Supplement + Latin Extended-A kha.graphics2.Graphics.fontGlyphs = [for (i in 32...383) i]; + // + Greek + for (i in 880...1023) kha.graphics2.Graphics.fontGlyphs.push(i); // + Cyrillic for (i in 1024...1119) kha.graphics2.Graphics.fontGlyphs.push(i);