summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index d63ddd448c..ed8e4d20bd 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -52,6 +52,7 @@
52#include "talk.h" 52#include "talk.h"
53#include "filetypes.h" 53#include "filetypes.h"
54#include "misc.h" 54#include "misc.h"
55#include "filefuncs.h"
55#include "filetree.h" 56#include "filetree.h"
56#include "tagtree.h" 57#include "tagtree.h"
57#ifdef HAVE_RECORDING 58#ifdef HAVE_RECORDING
@@ -260,7 +261,8 @@ static int tree_voice_cb(int selected_item, void * data)
260 261
261bool check_rockboxdir(void) 262bool check_rockboxdir(void)
262{ 263{
263 if(!dir_exists(ROCKBOX_DIR)) 264 char path[MAX_PATH];
265 if(!dir_exists(get_user_file_path(ROCKBOX_DIR, 0, path, sizeof(path))))
264 { /* No need to localise this message. 266 { /* No need to localise this message.
265 If .rockbox is missing, it wouldn't work anyway */ 267 If .rockbox is missing, it wouldn't work anyway */
266 int i; 268 int i;