diff options
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r-- | apps/filetypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 12b4fe3dc6..3ce3200e3c 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -233,7 +233,7 @@ long tree_filetype_voiceclip(int attr) { int count = sizeof(inbuilt_attrvoices)/sizeof(*inbuilt_attrvoices); /* try to find a voice ID for the extension, if known */ - //attr &= FILE_ATTR_MASK; /* file type */ + attr &= FILE_ATTR_MASK; /* file type */ for (j=0; j<count; j++) if (attr == inbuilt_attrvoices[j].tree_attr) { |