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() */