From 21bede81235d4e1b3ddc126b653e811f6ffb588e Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 4 Sep 2025 12:35:21 +1000 Subject: [PATCH] ImGuiManager: Initialize to default text font order --- src/util/imgui_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/imgui_manager.cpp b/src/util/imgui_manager.cpp index fd5a947a6..cca986395 100644 --- a/src/util/imgui_manager.cpp +++ b/src/util/imgui_manager.cpp @@ -149,7 +149,7 @@ struct ALIGN_TO_CACHE_LINE State // mapping of host key -> imgui key ALIGN_TO_CACHE_LINE std::unordered_map imgui_key_map; - TextFontOrder text_font_order = {}; + TextFontOrder text_font_order = ImGuiManager::GetDefaultTextFontOrder(); std::array, static_cast(TextFont::MaxCount)> text_fonts_data; DynamicHeapArray fixed_font_data;