about summary refs log tree commit diff
path: root/src/engine/client/ui.h
diff options
context:
space:
mode:
authorJakob Fries <jakob.fries@gmail.com>2007-06-01 02:21:46 +0000
committerJakob Fries <jakob.fries@gmail.com>2007-06-01 02:21:46 +0000
commit821e6bbe538421556f516c671114b7d748629661 (patch)
tree1f9d9c8b42505b9a807e94aaee191934cd7f6590 /src/engine/client/ui.h
parent70a971d4a99675f65a0a4de9f1baa8352e464235 (diff)
downloadzcatch-821e6bbe538421556f516c671114b7d748629661.tar.gz
zcatch-821e6bbe538421556f516c671114b7d748629661.zip
gui things
Diffstat (limited to 'src/engine/client/ui.h')
-rw-r--r--src/engine/client/ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/client/ui.h b/src/engine/client/ui.h
index 1a420906..268785be 100644
--- a/src/engine/client/ui.h
+++ b/src/engine/client/ui.h
@@ -26,7 +26,7 @@ int ui_mouse_inside(float x, float y, float w, float h);
 typedef void (*draw_button_callback)(void *id, const char *text, int checked, float x, float y, float w, float h, void *extra);
 
 void ui_do_image(int texture, float x, float y, float w, float h);
-void ui_do_label(float x, float y, char *text);
+void ui_do_label(float x, float y, const char *text, float size);
 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);
 int ui_do_button(void *id, const char *text, int checked, float x, float y, float w, float h, draw_button_callback draw_func);