Allow larger images

width or height over 127 pixels got converted to a negative number!
This commit is contained in:
Bodmer
2017-12-16 01:36:16 +00:00
committed by GitHub
parent 16f6b9cc0b
commit ca13757c9b

View File

@@ -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)