Revision:
2:d6e572640dcc
Parent:
0:601fd83c75e0
--- a/xfont.h	Wed Dec 29 11:48:54 2010 +0000
+++ b/xfont.h	Thu Dec 30 16:49:46 2010 +0000
@@ -2,13 +2,13 @@
 #define FONT_H
 
 typedef struct {
-    unsigned int    cod; // unicode value
-    int             wid; // data width in pixels
-    int             hei; // data height in pixels (multiple of 8)
-    int             tlc; // form allows left top crening
-    int             trc; // form allows right top crening
-    int             blc; // form allows left bottom crening
-    int             brc; // form allows right bottom crening
+    unsigned char   cod; // unicode value
+    unsigned char   wid; // data width in pixels
+    unsigned char   hei; // data height in pixels (multiple of 8)
+    unsigned char   tlc; // form allows left top crening
+    unsigned char   trc; // form allows right top crening
+    unsigned char   blc; // form allows left bottom crening
+    unsigned char   brc; // form allows right bottom crening
     const char*     bmp;
 } XGlyph;