summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 58f27409b1..36acb9b897 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -47,7 +47,7 @@
47#include "splash.h" 47#include "splash.h"
48 48
49/* Maximum number of tracks we can have loaded at one time */ 49/* Maximum number of tracks we can have loaded at one time */
50#define MAX_PLAYLIST_ENTRIES 40 50#define MAX_PLAYLIST_ENTRIES 200
51 51
52/* The number of items between the selected one and the end/start of 52/* The number of items between the selected one and the end/start of
53 * the buffer under which the buffer must reload */ 53 * the buffer under which the buffer must reload */
@@ -598,7 +598,11 @@ void playlist_callback_icons(int selected_item, void * data, ICON * icon)
598#endif 598#endif
599 } 599 }
600 else 600 else
601#ifdef HAVE_LCD_BITMAP
601 *icon=0; 602 *icon=0;
603#else
604 *icon=-1;
605#endif
602} 606}
603 607
604 608