commit 96bb9086261a1cdcd74d498c67949796220f660a
parent 03a5c08bb578a1db293d3975bbc0ca143207ab67
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date: Tue, 4 Jan 2022 18:45:16 +0100
argb instead of rgba
The first one is more popular.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/color.h b/include/clap/color.h
@@ -9,10 +9,10 @@ extern "C" {
#pragma pack(push, 1)
typedef struct clap_color {
+ uint8_t alpha;
uint8_t red;
uint8_t green;
uint8_t blue;
- uint8_t alpha;
} clap_color_t;
#pragma pack(pop)