🩹 Fix TFT image packing

This commit is contained in:
Scott Lahteine 2022-07-22 21:46:38 -05:00
parent a03516a9f4
commit f9154eca8c

View file

@ -114,7 +114,13 @@ enum colorMode_t : uint8_t {
typedef colorMode_t ColorMode;
typedef struct __attribute__((__packed__)) {
#ifdef __AVR__
#define IMG_PACKED __attribute__((__packed__))
#else
#define IMG_PACKED
#endif
typedef struct IMG_PACKED {
void *data;
uint16_t width;
uint16_t height;