about summary refs log tree commit diff
path: root/src/engine/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/client')
-rw-r--r--src/engine/client/ui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/client/ui.cpp b/src/engine/client/ui.cpp
index 0f42e435..85ebeaf7 100644
--- a/src/engine/client/ui.cpp
+++ b/src/engine/client/ui.cpp
@@ -80,7 +80,7 @@ void ui_do_label(float x, float y, char *text)
 {
     gfx_blend_normal();
     gfx_texture_set(current_font->font_texture);
-    gfx_pretty_text(x, y, 18.f, text);
+    gfx_pretty_text(x, y, 36.f, text);
 }
 
 int ui_do_button(void *id, const char *text, int checked, float x, float y, float w, float h, draw_button_callback draw_func, void *extra)