1
0
Fork 0
forked from len0rd/rockbox

More const policeing step 3

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4982 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2004-08-03 05:58:46 +00:00
parent 586ec8274d
commit 2b0694c694
9 changed files with 17 additions and 15 deletions

View file

@ -87,7 +87,7 @@ struct cursorinfo {
static void scroll_thread(void);
static char scroll_stack[DEFAULT_STACK_SIZE];
static char scroll_name[] = "scroll";
static const char scroll_name[] = "scroll";
static char scroll_speed = 8; /* updates per second */
static int scroll_delay = HZ/2; /* delay before starting scroll */
static int jump_scroll_delay = HZ/4; /* delay between jump scroll jumps */
@ -422,7 +422,7 @@ void lcd_double_height(bool on)
lcd_write_command(on?9:8);
}
static char icon_pos[] =
static const char icon_pos[] =
{
0, 0, 0, 0, /* Battery */
2, /* USB */
@ -441,7 +441,7 @@ static char icon_pos[] =
10, /* Param */
};
static char icon_mask[] =
static const char icon_mask[] =
{
0x02, 0x08, 0x04, 0x10, /* Battery */
0x04, /* USB */