[image] Fix rodata bloat for multi-frame RGB565+alpha animations (#15873)

This commit is contained in:
Jonathan Swoboda
2026-04-20 16:27:34 -04:00
committed by GitHub
parent 94f30d5950
commit 213ab312d2

View File

@@ -756,7 +756,7 @@ async def write_image(config, all_frames=False):
for col in range(width):
encoder.encode(pixels[row * width + col])
encoder.end_row()
encoder.end_image()
encoder.end_image()
rhs = [HexInt(x) for x in encoder.data]
prog_arr = cg.progmem_array(config[CONF_RAW_DATA_ID], rhs)