summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/screens.c4
-rw-r--r--apps/screens.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/screens.c b/apps/screens.c
index 4cf56b8192..d1929c2c8c 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 0a13a9ac8b..3015652a5c 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