diff options
| author | Nils Wallménius <nils@rockbox.org> | 2007-02-01 20:52:36 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2007-02-01 20:52:36 +0000 |
| commit | 98dc093317b615b2aa8ffe8d140945d75764a813 (patch) | |
| tree | c9de11fdcb918c7292876ffc4ff43fa61f9d688e | |
| parent | fa7dd74cf5d3f0e0bffb30a50db56363a34f8bde (diff) | |
| download | rockbox-98dc093317b615b2aa8ffe8d140945d75764a813.zip rockbox-98dc093317b615b2aa8ffe8d140945d75764a813.tar.gz rockbox-98dc093317b615b2aa8ffe8d140945d75764a813.tar.bz2 rockbox-98dc093317b615b2aa8ffe8d140945d75764a813.tar.xz | |
Comment out an unused function
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12178 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/screens.c | 4 | ||||
| -rw-r--r-- | apps/screens.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/screens.c b/apps/screens.c index 4cf56b8..d1929c2 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -1254,7 +1254,7 @@ bool browse_id3(void) } } - +#if 0 /* Currently unused */ bool set_rating(void) { struct mp3entry* id3 = audio_current_track(); @@ -1301,7 +1301,7 @@ bool set_rating(void) action_signalscreenchange(); return false; } - +#endif bool view_runtime(void) { diff --git a/apps/screens.h b/apps/screens.h index 0a13a9a..3015652 100644 --- a/apps/screens.h +++ b/apps/screens.h @@ -48,7 +48,7 @@ bool set_time_screen(const char* string, struct tm *tm); bool shutdown_screen(void); bool browse_id3(void); -bool set_rating(void); +/* bool set_rating(void); Currently unused */ bool view_runtime(void); #endif |