mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-10 21:55:10 -05:00
talkbox clip renamed to ".dirname.tbx", most people voted for a non-mp3 extension
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4485 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
47e0079fab
commit
99483dee1c
3 changed files with 3 additions and 4 deletions
|
|
@ -37,7 +37,7 @@ extern void bitswap(unsigned char *data, int length); /* no header for this */
|
|||
/***************** Constants *****************/
|
||||
|
||||
#define QUEUE_SIZE 50
|
||||
const char* dir_thumbnail_name = ".dirname.mp3";
|
||||
const char* dir_thumbnail_name = ".dirname.tbx";
|
||||
|
||||
|
||||
/***************** Data types *****************/
|
||||
|
|
|
|||
|
|
@ -209,8 +209,7 @@ static int build_playlist(int start_index)
|
|||
|
||||
for(i = 0;i < filesindir;i++)
|
||||
{
|
||||
if((dircache[i].attr & TREE_ATTR_MASK) == TREE_ATTR_MPA
|
||||
&& (strcmp(dircache[i].name, dir_thumbnail_name) != 0))
|
||||
if((dircache[i].attr & TREE_ATTR_MASK) == TREE_ATTR_MPA)
|
||||
{
|
||||
DEBUGF("Adding %s\n", dircache[i].name);
|
||||
if (playlist_add(dircache[i].name) < 0)
|
||||
|
|
|
|||
|
|
@ -271,4 +271,4 @@ int talk_spell(char* spell, bool enqueue)
|
|||
return 0;
|
||||
}
|
||||
|
||||
const char* dir_thumbnail_name = ".dirname.mp3";
|
||||
const char* dir_thumbnail_name = ".dirname.tbx";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue