diff options
| author | untodesu <kirill@untode.su> | 2025-12-26 18:23:01 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-12-26 18:23:01 +0500 |
| commit | 1ae8ef5905bea12c35c45aeceab5a14d9b0ad8f9 (patch) | |
| tree | dcf1177d4fba8eac790876f685c9bfbb0d6cfe84 /src/game/client/gui/splash.cc | |
| parent | 2d43c8c2c66de167be8c55c3769a7bf5e9ffe24c (diff) | |
| download | voxelius-1ae8ef5905bea12c35c45aeceab5a14d9b0ad8f9.tar.bz2 voxelius-1ae8ef5905bea12c35c45aeceab5a14d9b0ad8f9.zip | |
Fixup scaling for most of GUI elements
Diffstat (limited to 'src/game/client/gui/splash.cc')
| -rw-r--r-- | src/game/client/gui/splash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/gui/splash.cc b/src/game/client/gui/splash.cc index cb035e9..84ecb8b 100644 --- a/src/game/client/gui/splash.cc +++ b/src/game/client/gui/splash.cc @@ -152,7 +152,7 @@ void client_splash::render(void) const ImVec2 image_pos = ImVec2(image_x, image_y); if(!current_text.empty()) { - ImGui::PushFont(globals::font_unscii8, 8.0f); + ImGui::PushFont(globals::font_unscii8, 16.0f); ImGui::SetCursorPos(ImVec2(16.0f, 16.0f)); ImGui::TextDisabled("%s", current_text.c_str()); ImGui::PopFont(); |
