diff options
Diffstat (limited to 'src/xine-engine/alphablend.h')
-rw-r--r-- | src/xine-engine/alphablend.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/alphablend.h b/src/xine-engine/alphablend.h index 30806cd5e..513ac116f 100644 --- a/src/xine-engine/alphablend.h +++ b/src/xine-engine/alphablend.h @@ -59,10 +59,10 @@ void _x_alphablend_free(alphablend_t *extra_data) XINE_PROTECTED; #endif typedef struct { /* CLUT == Color LookUp Table */ - uint8_t cb : 8; - uint8_t cr : 8; - uint8_t y : 8; - uint8_t foo : 8; + uint8_t cb; + uint8_t cr; + uint8_t y; + uint8_t foo; } ATTRIBUTE_PACKED clut_t; |