X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=include%2FSColor.h;h=6512315dd8533a7c12c419fb601a531d7228ca54;hb=75c3ceb26453f2b265c3eabdd7518d26abfeed1c;hp=0c6e80932b4ecabd6f3f59769087ef9183f01b94;hpb=bf35c1c5384d6ccae7b7690ee08c511d036ffaec;p=c-irrlicht.git diff --git a/include/SColor.h b/include/SColor.h index 0c6e809..6512315 100644 --- a/include/SColor.h +++ b/include/SColor.h @@ -22,12 +22,14 @@ #ifndef __C_IRR_COLOR_H_INCLUDED__ #define __C_IRR_COLOR_H_INCLUDED__ +#include + typedef struct { - unsigned int a; - unsigned int r; - unsigned int g; - unsigned int b; + uint8_t a; + uint8_t r; + uint8_t g; + uint8_t b; } irr_video_SColor; #endif