From 5ed1bb6777fa5af96ba2c2d76cc12a579f3cee6e Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sat, 16 Dec 2017 01:38:09 +0000 Subject: [PATCH] Allow larger images --- examples/480 x 320/Flash_Bitmap/Flash_Bitmap.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/480 x 320/Flash_Bitmap/Flash_Bitmap.ino b/examples/480 x 320/Flash_Bitmap/Flash_Bitmap.ino index 0329e5f..fb58180 100644 --- a/examples/480 x 320/Flash_Bitmap/Flash_Bitmap.ino +++ b/examples/480 x 320/Flash_Bitmap/Flash_Bitmap.ino @@ -83,7 +83,7 @@ void loop() // Draw array "icon" of defined width and height at coordinate x,y // Maximum icon size is 255x255 pixels to avoid integer overflow -void drawIcon(const unsigned short* icon, int16_t x, int16_t y, int8_t width, int8_t height) { +void drawIcon(const unsigned short* icon, int16_t x, int16_t y, uint16_t width, uint16_t height) { uint16_t pix_buffer[BUFF_SIZE]; // Pixel buffer (16 bits per pixel)