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

This commit is contained in:
zhongjin 2022-11-22 12:40:07 +08:00
parent 68b1758449
commit 551b1d7199

View File

@ -284,7 +284,7 @@ void fntTexFont::puts ( sgVec3 curpos, float pointsize, float italic, const char
while ( *s != '\0' )
{
unsigned int cc = (unsigned char) *s ;
unsigned int cc = (unsigned char) *(s++) ;
if (*s == '\n')
{
@ -319,7 +319,6 @@ void fntTexFont::puts ( sgVec3 curpos, float pointsize, float italic, const char
//low_putch ( curpos, pointsize, italic, *s ) ;
low_putch ( curpos, pointsize, italic, cc ) ;
s++ ;
}
}