summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-recorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-recorder.c')
-rw-r--r--firmware/drivers/lcd-recorder.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-recorder.c b/firmware/drivers/lcd-recorder.c
index a8dca92b4f..c9781e77ef 100644
--- a/firmware/drivers/lcd-recorder.c
+++ b/firmware/drivers/lcd-recorder.c
@@ -165,7 +165,8 @@ void lcd_init (void)
165 165
166/* Performance function that works with an external buffer 166/* Performance function that works with an external buffer
167 note that y and height are in 8-pixel units! */ 167 note that y and height are in 8-pixel units! */
168void lcd_blit (unsigned char* p_data, int x, int y, int width, int height, int stride) 168void lcd_blit (const unsigned char* p_data, int x, int y, int width,
169 int height, int stride)
169{ 170{
170 /* Copy display bitmap to hardware */ 171 /* Copy display bitmap to hardware */
171 while (height--) 172 while (height--)