ezLabel() THEME_COLORS causes NUMONLY7SEG48 font to not update
ezLabel luxValue = ezLabel(150, 60, 150, 60, "0", THEME_COLORS, NUMONLY7SEG48, EZ_LEFT);
^ That label will not update properly - the segments stay on as it does and eventually become all "lit"
ezLabel luxValue = ezLabel(150, 60, 150, 60, "0", {0xFFFF, 0x0000, 0xFFFF}, NUMONLY7SEG48, EZ_LEFT);
^ That label works fine
It seems the original issue affects at least some other fonts (e.g. FSSB24) as well, it just happens that I was not updating those labels when I first wrote the issue.
Further, I cannot make the FMBO24 font draw in black.
ezLabel titleLabel = ezLabel(0, 0, 320, 50, "TSL-2561", {WHITE, BLACK, WHITE}, FMBO24, EZ_CENTER);
^ This or any variation on specifying black fill, bricks my Core2
ezLabel titleLabel = ezLabel(0, 0, 320, 50, "TSL-2561", {WHITE, BLACK, WHITE}, FMB24, EZ_CENTER); ezLabel titleLabel = ezLabel(0, 0, 320, 50, "TSL-2561", {WHITE, GREEN, WHITE}, FMBO24, EZ_CENTER);
^ Both of those work fine
That is very confusing - hard for me to imagine what would cause that.