Change xcolor_t::initialized into a bool

The code already assigns "true" to this, but it's not yet a boolean variable.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2009-04-13 20:57:40 +02:00 committed by Julien Danjou
parent 7b91cf259c
commit 40c300afed
1 changed files with 1 additions and 1 deletions

2
draw.h
View File

@ -45,12 +45,12 @@ typedef struct
typedef struct
{
unsigned initialized : 1;
uint32_t pixel;
uint16_t red;
uint16_t green;
uint16_t blue;
uint16_t alpha;
bool initialized;
} xcolor_t;
typedef enum