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, 1 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 6465b50e6f..623046a4b0 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -1229,7 +1229,7 @@ bool create_playlist(void)
1229 if (fd < 0) 1229 if (fd < 0)
1230 return false; 1230 return false;
1231 1231
1232 cpu_boost_id(true, CPUBOOSTID_TREE); 1232 trigger_cpu_boost();
1233 1233
1234 snprintf(filename, sizeof(filename), "%s", 1234 snprintf(filename, sizeof(filename), "%s",
1235 tc.currdir[1] ? tc.currdir : "/"); 1235 tc.currdir[1] ? tc.currdir : "/");
@@ -1237,8 +1237,6 @@ bool create_playlist(void)
1237 add_dir(filename, sizeof(filename), fd); 1237 add_dir(filename, sizeof(filename), fd);
1238 close(fd); 1238 close(fd);
1239 1239
1240 cpu_boost_id(false, CPUBOOSTID_TREE);
1241
1242 sleep(HZ); 1240 sleep(HZ);
1243 1241
1244 return true; 1242 return true;