Update AnimatedGIFPanel.ino

This commit is contained in:
mrfaptastic 2021-04-13 11:39:15 +01:00
parent 18464e068e
commit 6e0a7638f2

View file

@ -123,7 +123,7 @@ void GIFDraw(GIFDRAW *pDraw)
// Translate the 8-bit pixels through the RGB565 palette (already byte reversed)
for (x=0; x<pDraw->iWidth; x++)
{
dma_display.drawPixelRGB565(x, y, usPalette[*s++]);
dma_display.drawPixel(x, y, usPalette[*s++]); // color 565
}
}
} /* GIFDraw() */