forked from len0rd/rockbox
Fixed associate problem with file extensions (.info files matched .nfo extension)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7456 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
acf14e0569
commit
b2473d58ab
14 changed files with 50 additions and 49 deletions
|
|
@ -240,7 +240,7 @@ int ft_load(struct tree_context* c, const char* tempdir)
|
|||
dptr->attr = entry->attribute;
|
||||
|
||||
/* check for known file types */
|
||||
if ( !(dptr->attr & ATTR_DIRECTORY) && (len > 4) )
|
||||
if ( !(dptr->attr & ATTR_DIRECTORY) )
|
||||
dptr->attr |= filetype_get_attr(entry->d_name);
|
||||
|
||||
#ifdef BOOTFILE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue