summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-08-02 17:39:34 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-08-02 17:39:34 +0000
commitd8ac6074184ffc21c4da8c594df72ee42aa23df2 (patch)
treec42203d8bf2c7e85a9886616f0268250dbe5e9d6 /apps/onplay.c
parentd68ae6a7a62e0a32cfc84200092985910c0fd099 (diff)
downloadrockbox-d8ac6074184ffc21c4da8c594df72ee42aa23df2.tar.gz
rockbox-d8ac6074184ffc21c4da8c594df72ee42aa23df2.zip
Tagcache: Fixed runtime stats not being gathered when tagcache is kept
on disk. Initial attempt to make tagcache thread safe. Replaced a few direct buffer allocations with buffer_alloc from tagcache and dircache where possible. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10415 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 53058b3bc9..4558da72fe 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -850,7 +850,7 @@ int onplay(char* file, int attr, int from)
850 850
851 if (context == CONTEXT_WPS || 851 if (context == CONTEXT_WPS ||
852 context == CONTEXT_TREE || 852 context == CONTEXT_TREE ||
853 (context == CONTEXT_ID3DB)) 853 context == CONTEXT_ID3DB)
854 { 854 {
855 items[i].desc = ID2P(LANG_PLAYLIST); 855 items[i].desc = ID2P(LANG_PLAYLIST);
856 items[i].function = playlist_options; 856 items[i].function = playlist_options;