diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2023-10-19 21:16:12 +0200 |
---|---|---|
committer | Christian Soffke <christian.soffke@gmail.com> | 2023-10-19 21:16:12 +0200 |
commit | 34408af9942cd8b6784a03c0245145ca39cb3893 (patch) | |
tree | 19c6538087d315fcda632ca4560ae642f4d75e47 | |
parent | 4cfd7cc77d0cf85ba50f3b4edc1bd7dba2053d65 (diff) | |
download | rockbox-34408af994.tar.gz rockbox-34408af994.zip |
Fix warble error 4cfd7cc
Change-Id: I5609a1b98e00d5560a2c6523daf6da0025e421dd
-rw-r--r-- | apps/screens.h | 8 |
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 @@ #include "config.h" #include "timefuncs.h" #include "metadata.h" +#ifndef WARBLE #include "playlist.h" +#endif struct screen; @@ -40,11 +42,13 @@ int mmc_remove_request(void); bool set_time_screen(const char* title, struct tm *tm, bool set_date); #endif -bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount, - struct tm *modified, int track_ct); +#ifndef WARBLE bool browse_id3_ex(struct mp3entry *id3, struct playlist_info *playlist, int playlist_display_index, int playlist_amount, struct tm *modified, int track_ct); +#endif +bool browse_id3(struct mp3entry *id3, int playlist_display_index, int playlist_amount, + struct tm *modified, int track_ct); int view_runtime(void); #ifdef HAVE_TOUCHSCREEN |