mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 00:32:45 +03:00
fix(gx): members of C4Pixel should be unsigned
This commit is contained in:
parent
95c89c50b9
commit
d6cf306330
@ -338,10 +338,10 @@ enum PIXEL_FORMAT {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct C4Pixel {
|
struct C4Pixel {
|
||||||
char b;
|
uint8_t b;
|
||||||
char g;
|
uint8_t g;
|
||||||
char r;
|
uint8_t r;
|
||||||
char a;
|
uint8_t a;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct MipBits {
|
struct MipBits {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user