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
This commit is contained in:
Spoike 2009-10-06 00:20:48 +00:00
parent 0ba6d4c515
commit abc8b40d31
1 changed files with 2 additions and 1 deletions

View File

@ -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))