summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2023-10-19 21:16:12 +0200
committerChristian Soffke <christian.soffke@gmail.com>2023-10-19 21:16:12 +0200
commit34408af9942cd8b6784a03c0245145ca39cb3893 (patch)
tree19c6538087d315fcda632ca4560ae642f4d75e47
parent4cfd7cc77d0cf85ba50f3b4edc1bd7dba2053d65 (diff)
downloadrockbox-34408af9942cd8b6784a03c0245145ca39cb3893.tar.gz
rockbox-34408af9942cd8b6784a03c0245145ca39cb3893.zip
Fix warble error 4cfd7cc
Change-Id: I5609a1b98e00d5560a2c6523daf6da0025e421dd
-rw-r--r--apps/screens.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/screens.h b/apps/screens.h
index 1cfd7dcdcf..c3925f8ebc 100644
--- a/apps/screens.h
+++ b/apps/screens.h
@@ -24,7 +24,9 @@
24#include "config.h" 24#include "config.h"
25#include "timefuncs.h" 25#include "timefuncs.h"
26#include "metadata.h" 26#include "metadata.h"
27#ifndef WARBLE
27#include "playlist.h" 28#include "playlist.h"
29#endif
28 30
29struct screen; 31struct screen;
30 32
@@ -40,11 +42,13 @@ int mmc_remove_request(void);
40bool set_time_screen(const char* title, struct tm *tm, bool set_date); 42bool set_time_screen(const char* title, struct tm *tm, bool set_date);
41#endif 43#endif
42 44
43bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount, 45#ifndef WARBLE
44 struct tm *modified, int track_ct);
45bool browse_id3_ex(struct mp3entry *id3, struct playlist_info *playlist, 46bool browse_id3_ex(struct mp3entry *id3, struct playlist_info *playlist,
46 int playlist_display_index, int playlist_amount, 47 int playlist_display_index, int playlist_amount,
47 struct tm *modified, int track_ct); 48 struct tm *modified, int track_ct);
49#endif
50bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount,
51 struct tm *modified, int track_ct);
48int view_runtime(void); 52int view_runtime(void);
49 53
50#ifdef HAVE_TOUCHSCREEN 54#ifdef HAVE_TOUCHSCREEN