summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/configfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/configfile.c')
-rw-r--r--apps/plugins/lib/configfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/configfile.c b/apps/plugins/lib/configfile.c
index 54c067c4a7..0fbba81580 100644
--- a/apps/plugins/lib/configfile.c
+++ b/apps/plugins/lib/configfile.c
@@ -33,7 +33,7 @@ void get_cfg_filename(char* buf, int buf_len, const char* filename)
33 s = cfg_rb->strrchr(buf, '/'); 33 s = cfg_rb->strrchr(buf, '/');
34 if (!s) /* should never happen */ 34 if (!s) /* should never happen */
35 { 35 {
36 cfg_rb->snprintf(buf, buf_len, "/.rockbox/rocks/%s", filename); 36 cfg_rb->snprintf(buf, buf_len, PLUGIN_DIR "/%s", filename);
37 } 37 }
38 else 38 else
39 { 39 {