From 4c1157b691435120fbf4439606e634bd0a0f0d22 Mon Sep 17 00:00:00 2001 From: handa Date: Wed, 28 Feb 2007 07:24:24 +0000 Subject: [PATCH] (struct MFont): Types of members type, source, and spacing changed to unsigned. --- src/font.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/font.h b/src/font.h index 4cfeff0..3932dfc 100644 --- a/src/font.h +++ b/src/font.h @@ -104,9 +104,9 @@ struct MFont For the time being, we mention only Y-resolution (resy) and assume that resx is always equal to resy. */ unsigned short property[MFONT_PROPERTY_MAX]; - enum MFontType type : 2; - enum MFontSource source : 2; - enum MFontSpacing spacing : 2; + unsigned type : 2; + unsigned source : 2; + unsigned spacing : 2; unsigned for_full_width : 1; /* For FONT-OBJ, 1 means `size' is a logical or of bit masks for available pixel sizes (Nth bit corresponds to (6 + N) pixels), 0 -- 1.7.10.4