From d6cf3063303a9e171a20b46f10a7185af2228ccd Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 27 Oct 2025 22:24:23 -0500 Subject: [PATCH] fix(gx): members of C4Pixel should be unsigned --- src/gx/Types.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gx/Types.hpp b/src/gx/Types.hpp index f68aaea..9ceaf2d 100644 --- a/src/gx/Types.hpp +++ b/src/gx/Types.hpp @@ -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 {