From a6ea7b7bbc66327cc2a957496f65dcfab5361cee Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 15:10:18 +0500 Subject: Update ImGui to a newer version with font scaling --- game/client/gui/splash.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'game/client/gui/splash.cc') diff --git a/game/client/gui/splash.cc b/game/client/gui/splash.cc index 9eed8d3..887e209 100644 --- a/game/client/gui/splash.cc +++ b/game/client/gui/splash.cc @@ -148,7 +148,7 @@ void gui::client_splash::render(void) const ImVec2 image_pos = ImVec2(image_x, image_y); if(!current_text.empty()) { - ImGui::PushFont(globals::font_chat); + ImGui::PushFont(globals::font_unscii8, 16.0f); ImGui::SetCursorPos(ImVec2(16.0f, 16.0f)); ImGui::TextDisabled("%s", current_text.c_str()); ImGui::PopFont(); -- cgit