X-Git-Url: https://git.jsancho.org/?p=c-irrlicht.git;a=blobdiff_plain;f=include%2FSColor.h;fp=include%2FSColor.h;h=ccd8a1e9affeb5e81af4a4aef70ca65bc503fd54;hp=0c6e80932b4ecabd6f3f59769087ef9183f01b94;hb=59b625c207d1ee8368f04f3c4d675fa393fe94f4;hpb=7e46627fbadd2bcf8169ae429e6fe0a546d2797a diff --git a/include/SColor.h b/include/SColor.h index 0c6e809..ccd8a1e 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; + uint32_t a; + uint32_t r; + uint32_t g; + uint32_t b; } irr_video_SColor; #endif