From 6e0a7638f27ee8df9611be51fcfdcffead861ee9 Mon Sep 17 00:00:00 2001 From: mrfaptastic <12006953+mrfaptastic@users.noreply.github.com> Date: Tue, 13 Apr 2021 11:39:15 +0100 Subject: [PATCH] Update AnimatedGIFPanel.ino --- examples/AnimatedGIFPanel/AnimatedGIFPanel.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino b/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino index a90d8f9..aa9f364 100644 --- a/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino +++ b/examples/AnimatedGIFPanel/AnimatedGIFPanel.ino @@ -123,7 +123,7 @@ void GIFDraw(GIFDRAW *pDraw) // Translate the 8-bit pixels through the RGB565 palette (already byte reversed) for (x=0; xiWidth; x++) { - dma_display.drawPixelRGB565(x, y, usPalette[*s++]); + dma_display.drawPixel(x, y, usPalette[*s++]); // color 565 } } } /* GIFDraw() */