about summary refs log tree commit diff
path: root/src/engine/e_interface.h
diff options
context:
space:
mode:
authorJakob Fries <jakob.fries@gmail.com>2007-12-25 03:25:13 +0000
committerJakob Fries <jakob.fries@gmail.com>2007-12-25 03:25:13 +0000
commitcd6d5e6237acf659d75fa64568506c152ce41ec9 (patch)
tree34f0a110da3796d10d272bd4742b000503103326 /src/engine/e_interface.h
parent23d50255d2527c2aa1fa15964f0fd22d0ba95bc2 (diff)
downloadzcatch-cd6d5e6237acf659d75fa64568506c152ce41ec9.tar.gz
zcatch-cd6d5e6237acf659d75fa64568506c152ce41ec9.zip
new fonts added, lots more magic font code added, server bug fixed
Diffstat (limited to 'src/engine/e_interface.h')
-rw-r--r--src/engine/e_interface.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/e_interface.h b/src/engine/e_interface.h
index 9f86d4c8..a4f3baa9 100644
--- a/src/engine/e_interface.h
+++ b/src/engine/e_interface.h
@@ -856,7 +856,8 @@ void client_serverbrowse_update();
 
 /* undocumented graphics stuff */
 
-void gfx_text(void *font, float x, float y, const char *text, float size);
+void gfx_text(void *font, float x, float y, float size, const char *text, int max_width);
+float gfx_text_width(void *font, float size, const char *text, int length);
 void gfx_pretty_text_color(float r, float g, float b, float a);
 void gfx_pretty_text(float x, float y, float size, const char *text, int max_width);
 float gfx_pretty_text_width(float size, const char *text, int length);