Skip to content

Commit

Permalink
[UI] Fixed incorrect characters range in ImGUI
Browse files Browse the repository at this point in the history
  • Loading branch information
Gliniak committed Apr 6, 2024
1 parent 122f58c commit 06d7a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xenia/ui/imgui_drawer.cc
Expand Up @@ -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,
};
Expand Down

0 comments on commit 06d7a5f

Please sign in to comment.