macro to get character width
| 231 | |
| 232 | // macro to get character width |
| 233 | static inline int CHAR_WIDTH(int font, int ch) { return (int)(grfont_GetCharWidth(font, ch) * Grtext_scale); } |
| 234 | |
| 235 | static inline int CHAR_HEIGHT(int font) { return (int)(grfont_GetHeight(font) * Grtext_scale); } |
| 236 |
no test coverage detected