···144144 /* lcd */
145145 void (*lcd_set_contrast)(int x);
146146 void (*lcd_update)(void);
147147- void (*lcd_update_rect)(int x, int y, int width, int height);
148147 void (*lcd_clear_display)(void);
149148 void (*lcd_setmargins)(int x, int y);
150149 int (*lcd_getstringsize)(const unsigned char *str, int *w, int *h);
···163162 void (*lcd_double_height)(bool on);
164163#else /* HAVE_LCD_BITMAP */
165164 fb_data* lcd_framebuffer;
165165+ void (*lcd_update_rect)(int x, int y, int width, int height);
166166 void (*lcd_set_drawmode)(int mode);
167167 int (*lcd_get_drawmode)(void);
168168 void (*lcd_setfont)(int font);
+1-1
uisimulator/common/lcd-common.c
···2727void lcd_blit_mono(const unsigned char *data, int x, int y, int width, int height,
2828 int stride)
2929{
3030- (void)p_data;
3030+ (void)data;
3131 (void)x;
3232 (void)y;
3333 (void)width;