From 06d7a5f0a3797efa931ab10e62fa9597ccc6ec8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Gli=C5=84ski?= Date: Sat, 6 Apr 2024 19:12:32 +0200 Subject: [PATCH] [UI] Fixed incorrect characters range in ImGUI --- src/xenia/ui/imgui_drawer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/ui/imgui_drawer.cc b/src/xenia/ui/imgui_drawer.cc index f1b0ce9d4..00c9917ed 100644 --- a/src/xenia/ui/imgui_drawer.cc +++ b/src/xenia/ui/imgui_drawer.cc @@ -255,7 +255,7 @@ void ImGuiDrawer::SetupNotificationTextures() { static const ImWchar font_glyph_ranges[] = { 0x0020, 0x00FF, // Basic Latin + Latin Supplement 0x0370, 0x03FF, // Greek - 0x0400, 0x044F, // Cyrillic + 0x0400, 0x04FF, // Cyrillic 0x2000, 0x206F, // General Punctuation 0, };