fix(gx): members of C4Pixel should be unsigned

This commit is contained in:
fallenoak 2025-10-27 22:24:23 -05:00
parent 95c89c50b9
commit d6cf306330
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -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 {