Hello Mr. Lotter,

acknex.h containes the following line in its definition of the FONT struct:
Code:
int cpl; // characters per bitmap line, or -1 for a TTF font


I'm wondering if it is safe to rely on the comment or if this is subject to future change? I'd like to write a macro or a function that checks the type of the font like:
Code:
#define FONT_IS_BITMAP_TYPE(f) (f->cpl >= 0)



Always learn from history, to be sure you make the same mistakes again...