aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authormrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2021-04-13 11:39:15 +0100
committermrfaptastic <12006953+mrfaptastic@users.noreply.github.com>2021-04-13 11:39:15 +0100
commit6e0a7638f27ee8df9611be51fcfdcffead861ee9 (patch)
tree8f1ba654754fba436145042a03cf5cab6d884e2b /examples
parent18464e068e46d3df7646efa36ec1e5a405aca935 (diff)
Update AnimatedGIFPanel.ino
Diffstat (limited to 'examples')
-rw-r--r--examples/AnimatedGIFPanel/AnimatedGIFPanel.ino2
1 files changed, 1 insertions, 1 deletions
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; x<pDraw->iWidth; x++)
{
- dma_display.drawPixelRGB565(x, y, usPalette[*s++]);
+ dma_display.drawPixel(x, y, usPalette[*s++]); // color 565
}
}
} /* GIFDraw() */