summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2020-06-25 12:02:16 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2020-06-25 12:02:16 -0400
commit3074ade465a3fa22bfc112747d3ab9eedad1fb6f (patch)
treeaf7558356857a7051dfb5469ab4919eac5696ac3 /apps/plugins
parente8a3ade0eae65a962993d1d70b6aa6d74ac639a6 (diff)
downloadrockbox-3074ade465a3fa22bfc112747d3ab9eedad1fb6f.tar.gz
rockbox-3074ade465a3fa22bfc112747d3ab9eedad1fb6f.zip
Pictureflow Fixes -- Fixes
The name buffer is using too much ram for some targets will revisit later... removed extraneous call to set_scrol_lline Change-Id: I56d658149bcb0c50857d25924e37bcb46a612c75
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/pictureflow/pictureflow.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c
index d6ab0f3e99..3ccfc0d3a2 100644
--- a/apps/plugins/pictureflow/pictureflow.c
+++ b/apps/plugins/pictureflow/pictureflow.c
@@ -38,7 +38,11 @@
38 38
39 39
40/* Capacity 10 000 entries (for example 10k different albums) */ 40/* Capacity 10 000 entries (for example 10k different albums) */
41#define UNIQBUF_SIZE (64*1024) 41#if PLUGIN_BUFFER_SIZE > 0x10000
42 #define UNIQBUF_SIZE (64*1024)
43#else /*Bugfix -- Several players havent enough Ram to allow such a large buffer */
44 #define UNIQBUF_SIZE (16*1024)
45#endif
42static long uniqbuf[UNIQBUF_SIZE / sizeof(long)]; 46static long uniqbuf[UNIQBUF_SIZE / sizeof(long)];
43 47
44/******************************* Globals ***********************************/ 48/******************************* Globals ***********************************/
@@ -2829,7 +2833,7 @@ static void draw_album_text(void)
2829 2833
2830 albumtxt_x = get_scroll_line_offset(PF_SCROLL_ALBUM); 2834 albumtxt_x = get_scroll_line_offset(PF_SCROLL_ALBUM);
2831 mylcd_putsxy(albumtxt_x, albumtxt_y, albumtxt); 2835 mylcd_putsxy(albumtxt_x, albumtxt_y, albumtxt);
2832 set_scroll_line(artisttxt, PF_SCROLL_ARTIST); 2836
2833 if ((show_album_name == ALBUM_AND_ARTIST_TOP) 2837 if ((show_album_name == ALBUM_AND_ARTIST_TOP)
2834 || (show_album_name == ALBUM_AND_ARTIST_BOTTOM)){ 2838 || (show_album_name == ALBUM_AND_ARTIST_BOTTOM)){
2835 2839