summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index e01dc60f5b..da6d9f3e2f 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -53,8 +53,6 @@
53#endif 53#endif
54#include "main_menu.h" 54#include "main_menu.h"
55 55
56#define DEFAULT_PLAYLIST_NAME "/dynamic.m3u"
57
58static int context; 56static int context;
59static char* selected_file = NULL; 57static char* selected_file = NULL;
60static int selected_file_attr = 0; 58static int selected_file_attr = 0;
@@ -146,7 +144,7 @@ static bool save_playlist(void)
146{ 144{
147 char filename[MAX_PATH+1]; 145 char filename[MAX_PATH+1];
148 146
149 strncpy(filename, DEFAULT_PLAYLIST_NAME, sizeof(filename)); 147 strncpy(filename, DEFAULT_DYNAMIC_PLAYLIST_NAME, sizeof(filename));
150 148
151 if (!kbd_input(filename, sizeof(filename))) 149 if (!kbd_input(filename, sizeof(filename)))
152 { 150 {