forked from len0rd/rockbox
plugins: another round of making local functions static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30758 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2176fb38b6
commit
fe67a87885
17 changed files with 171 additions and 168 deletions
|
@ -431,7 +431,7 @@ int font_height = 8;
|
|||
|
||||
/* implementation */
|
||||
|
||||
void anim_horizontal(int cur_left, int cur_right)
|
||||
static void anim_horizontal(int cur_left, int cur_right)
|
||||
{
|
||||
int cur_x, x;
|
||||
int left, right, dl, dr;
|
||||
|
@ -609,7 +609,7 @@ void anim_horizontal(int cur_left, int cur_right)
|
|||
last_pos = cur_x;
|
||||
}
|
||||
|
||||
void anim_vertical(int cur_left, int cur_right)
|
||||
static void anim_vertical(int cur_left, int cur_right)
|
||||
{
|
||||
int cur_y, y;
|
||||
int left, right, dl, dr;
|
||||
|
@ -784,7 +784,7 @@ void anim_vertical(int cur_left, int cur_right)
|
|||
last_pos = cur_y;
|
||||
}
|
||||
|
||||
void cleanup(void)
|
||||
static void cleanup(void)
|
||||
{
|
||||
#if LCD_DEPTH > 1
|
||||
rb->lcd_set_foreground(LCD_DEFAULT_FG);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue