summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-player.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-player.c')
-rw-r--r--firmware/drivers/lcd-player.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/drivers/lcd-player.c b/firmware/drivers/lcd-player.c
index 3ae2f5dbb9..88aa53a6d3 100644
--- a/firmware/drivers/lcd-player.c
+++ b/firmware/drivers/lcd-player.c
@@ -87,7 +87,7 @@ struct cursorinfo {
87 87
88static void scroll_thread(void); 88static void scroll_thread(void);
89static char scroll_stack[DEFAULT_STACK_SIZE]; 89static char scroll_stack[DEFAULT_STACK_SIZE];
90static char scroll_name[] = "scroll"; 90static const char scroll_name[] = "scroll";
91static char scroll_speed = 8; /* updates per second */ 91static char scroll_speed = 8; /* updates per second */
92static int scroll_delay = HZ/2; /* delay before starting scroll */ 92static int scroll_delay = HZ/2; /* delay before starting scroll */
93static int jump_scroll_delay = HZ/4; /* delay between jump scroll jumps */ 93static int jump_scroll_delay = HZ/4; /* delay between jump scroll jumps */
@@ -422,7 +422,7 @@ void lcd_double_height(bool on)
422 lcd_write_command(on?9:8); 422 lcd_write_command(on?9:8);
423} 423}
424 424
425static char icon_pos[] = 425static const char icon_pos[] =
426{ 426{
427 0, 0, 0, 0, /* Battery */ 427 0, 0, 0, 0, /* Battery */
428 2, /* USB */ 428 2, /* USB */
@@ -441,7 +441,7 @@ static char icon_pos[] =
441 10, /* Param */ 441 10, /* Param */
442}; 442};
443 443
444static char icon_mask[] = 444static const char icon_mask[] =
445{ 445{
446 0x02, 0x08, 0x04, 0x10, /* Battery */ 446 0x02, 0x08, 0x04, 0x10, /* Battery */
447 0x04, /* USB */ 447 0x04, /* USB */