plib txf fnt code misses max_descent
Brought to you by:
sjbaker
In the plib fnt code there is this:
int max_height = _fnt_readInt () ;
_fnt_readInt () ;
In Mark J Kilgard's TexFont code there is this:
got = fread(&txf->max_ascent, sizeof(int), 1, file);
got = fread(&txf->max_descent, sizeof(int), 1, file);
Please adjust the plib code to use max_ascent and max_descent instead of just max_height.
Logged In: YES
user_id=35028
Originator: YES
This isn't a blocker for me any more because the program I was going to use plib for switched to FTGL instead.