aboutsummaryrefslogtreecommitdiff
path: root/examples/AnimatedGIFPanel
diff options
context:
space:
mode:
Diffstat (limited to 'examples/AnimatedGIFPanel')
-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() */