Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix test_codec broken after r27968

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27985 a1c6a512-1295-4272-9138-f99709370657

+2 -1
+2 -1
apps/plugins/test_codec.c
··· 902 902 if (dir) { 903 903 entry = rb->readdir(dir); 904 904 while (entry) { 905 - if (!(entry->attribute & ATTR_DIRECTORY)) { 905 + struct dirinfo info = rb->dir_get_info(dir, entry); 906 + if (!(info.attribute & ATTR_DIRECTORY)) { 906 907 rb->snprintf(filename,sizeof(filename),"%s%s",dirpath,entry->d_name); 907 908 test_track(filename); 908 909 log_text("", true);