lcd: Fix possible unset-before-use variable in 4bit alpha blending

Change-Id: I39e779e9452239b00731f31f55225cd979afe911
This commit is contained in:
Solomon Peachy 2026-05-25 13:05:49 -04:00
parent c2344070ac
commit ff3155be9a

View file

@ -508,6 +508,8 @@ static void ICODE_ATTR lcd_alpha_bitmap_part_mix(
if (alpha_pixels) { \
alpha_data = *alpha++ ^ dmask; \
alpha_data >>= ALPHA_BPP; \
} else { \
alpha_data = 0; \
} \
} while(0)
#define START_ALPHA() do { } while(0)