| # | Line 22 | Line 22 | typedef struct { | |
|---|---|---|
| 22 | typedef struct font { | |
| 23 | char name[64]; /* font file name */ | |
| 24 | struct font *next; /* next font in list */ | |
| 25 | < | int nref; /* number of references */ |
| 25 | > | unsigned short nref; /* number of references */ |
| 26 | short mwidth, mheight; /* mean glyph width and height */ | |
| 27 | + | short maxgv; /* max # glyph vertices */ |
| 28 | GLYPH *fg[256]; /* font glyphs */ | |
| 29 | } FONT; | |
| 30 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |