From 21166607227a2809f6b5c72dec6457e41394431c Mon Sep 17 00:00:00 2001 From: Gliniak Date: Tue, 30 Sep 2025 18:29:40 +0200 Subject: [PATCH] [UI] Added some missing glyphs that might be used in text --- src/xenia/ui/imgui_drawer.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xenia/ui/imgui_drawer.cc b/src/xenia/ui/imgui_drawer.cc index 3389d7a97..65b929cf4 100644 --- a/src/xenia/ui/imgui_drawer.cc +++ b/src/xenia/ui/imgui_drawer.cc @@ -296,9 +296,13 @@ void ImGuiDrawer::SetupNotificationTextures() { static constexpr ImWchar font_glyph_ranges[] = { 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x0100, 0x024F, // Extended Latin 0x0370, 0x03FF, // Greek 0x0400, 0x04FF, // Cyrillic 0x2000, 0x206F, // General Punctuation + 0x2070, 0x209F, // Superscripts & Subscripts + 0x2100, 0x214F, // Letterlike Symbols + 0x2150, 0x218F, // Number Forms 0, };