From abc8b40d31334ce649601b94fd5d662503332422 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 6 Oct 2009 00:20:48 +0000 Subject: [PATCH] Yes, I have more changes than just that. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3379 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/console.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/client/console.c b/engine/client/console.c index 09ceae7f1..afb1ee671 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -24,11 +24,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. console_t con_main; console_t *con_current; // point to either con_main -//#undef AVAIL_FREETYPE #ifdef AVAIL_FREETYPE extern struct font_s *conchar_font; int GLFont_DrawChar(struct font_s *font, int px, int py, unsigned int charcode); void GLFont_BeginString(struct font_s *font, int vx, int vy, int *px, int *py); + //void GLFont_EndString(struct font_s *font); + #define GLFont_EndString(f) #define Font_DrawChar(x,y,c) (conchar_font?GLFont_DrawChar(conchar_font, x, y, c):(Draw_ColouredCharacter(x, y, c),(x)+8))