1
0
Fork 0
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:
Henrik Backe 2005-09-02 15:05:35 +00:00
parent acf14e0569
commit b2473d58ab
14 changed files with 50 additions and 49 deletions

View file

@ -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