diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-10 19:10:52 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:46 +0000 |
commit | a327db46a2d939633b6836de28251ae7d4dbbec5 (patch) | |
tree | a9e1a35bd8a2e956b08354cbe94f278488b1e32e /src/ui | |
parent | 2b39517c2d6edb6f008150eaaebf5318029c8939 (diff) |
* (bug 3713) Scoreboard marquee causes text display problems
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/ui_shared.c | 2 | ||||
-rw-r--r-- | src/ui/ui_shared.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/ui_shared.c b/src/ui/ui_shared.c index 4b20e742..81bc360d 100644 --- a/src/ui/ui_shared.c +++ b/src/ui/ui_shared.c @@ -1833,7 +1833,7 @@ void Script_playLooped( itemDef_t *item, char **args ) } } -static qboolean UI_Text_Emoticon( const char *s, qboolean *escaped, +qboolean UI_Text_Emoticon( const char *s, qboolean *escaped, int *length, qhandle_t *h, int *width ) { char name[ MAX_EMOTICON_NAME_LEN ] = {""}; diff --git a/src/ui/ui_shared.h b/src/ui/ui_shared.h index d3d8f16f..a42d2c41 100644 --- a/src/ui/ui_shared.h +++ b/src/ui/ui_shared.h @@ -519,6 +519,7 @@ float UI_Text_Width( const char *text, float scale, int limit ); float UI_Text_Height( const char *text, float scale, int limit ); float UI_Text_EmWidth( float scale ); float UI_Text_EmHeight( float scale ); +qboolean UI_Text_Emoticon( const char *s, qboolean *escaped, int *length, qhandle_t *h, int *width ); int trap_Parse_AddGlobalDefine( char *define ); int trap_Parse_LoadSource( const char *filename ); |