From 25c0a56d96a77f99aade89f18bd90da4447d51f1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 6 Sep 2023 00:02:34 +0200 Subject: [PATCH] - fixed broken character fallback for cyrillic T. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was attached to the у (i.e. cyrillic u) --- source/common/utility/utf8.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/utility/utf8.cpp b/source/common/utility/utf8.cpp index 1ac6ea62b..cad98375e 100644 --- a/source/common/utility/utf8.cpp +++ b/source/common/utility/utf8.cpp @@ -413,7 +413,7 @@ int getAlternative(int code) case 0x41e: return 'O'; case 0x420: return 'P'; case 0x421: return 'C'; - case 0x423: return 'T'; + case 0x422: return 'T'; case 0x425: return 'X'; case 0x430: return 'a'; case 0x435: return 'e';