🩹 Fix TFT tImage struct packing

This commit is contained in:
Scott Lahteine 2022-07-16 16:01:24 -05:00
parent 929e12bf49
commit 77c6d9af20

View File

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