From ca13757c9bc1543b76d84c6108475ccfb9984058 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sat, 16 Dec 2017 01:36:16 +0000 Subject: [PATCH] Allow larger images width or height over 127 pixels got converted to a negative number! --- examples/160 x 128/Flash_Bitmap2/Flash_Bitmap2.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/160 x 128/Flash_Bitmap2/Flash_Bitmap2.ino b/examples/160 x 128/Flash_Bitmap2/Flash_Bitmap2.ino index 3cf517a..09fe021 100644 --- a/examples/160 x 128/Flash_Bitmap2/Flash_Bitmap2.ino +++ b/examples/160 x 128/Flash_Bitmap2/Flash_Bitmap2.ino @@ -80,7 +80,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)