更新 '3rdparty/fonts/fnt.cxx'

This commit is contained in:
zhongjin 2022-11-22 12:17:12 +08:00
parent 1374f16fe9
commit c2bc103e0a

View File

@ -42,9 +42,9 @@ int fntTexFont::load ( const SGPath& path, GLenum mag, GLenum min )
}
float fntTexFont::low_putch ( sgVec3 curpos, float pointsize,
float italic, char c )
float italic, int c )
{
unsigned int cc = (unsigned char) c ;
unsigned int cc = (unsigned int) c ;
/* Auto case-convert if character is absent from font. */