diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2011-10-15 20:38:08 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2011-10-15 20:38:08 +0000 |
commit | fe67a87885816448e78a99ef0cbe8fd331c3b103 (patch) | |
tree | 29f3d6453ed3af2b8a4c35f27d6520de2d768da0 /apps/plugins/sliding_puzzle.c | |
parent | 2176fb38b61c72d09dc2b344f956a9b1c69c361d (diff) |
plugins: another round of making local functions static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30758 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/sliding_puzzle.c')
-rw-r--r-- | apps/plugins/sliding_puzzle.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/sliding_puzzle.c b/apps/plugins/sliding_puzzle.c index d2e1eec977..1d857c0198 100644 --- a/apps/plugins/sliding_puzzle.c +++ b/apps/plugins/sliding_puzzle.c @@ -359,7 +359,7 @@ static const fb_data * puzzle_bmp_ptr; static const char * initial_bmp_path=NULL; #ifdef HAVE_ALBUMART -const char * get_albumart_bmp_path(void) +static const char * get_albumart_bmp_path(void) { struct mp3entry* track = rb->audio_current_track(); @@ -374,10 +374,12 @@ const char * get_albumart_bmp_path(void) } #endif -const char * get_random_bmp_path(void) +#if 0 /* unused */ +static const char * get_random_bmp_path(void) { return(initial_bmp_path); } +#endif static bool load_resize_bitmap(void) { |