mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02: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 {
|
||||
char b;
|
||||
char g;
|
||||
char r;
|
||||
char a;
|
||||
uint8_t b;
|
||||
uint8_t g;
|
||||
uint8_t r;
|
||||
uint8_t a;
|
||||
};
|
||||
|
||||
struct MipBits {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user