Add .dff FIFO logs to the list of valid extensions in FolderBrowser.

This commit is contained in:
lioncash 2013-07-15 10:01:04 -04:00
parent 0ba2594339
commit c35916a3e5
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class FolderBrowser extends ListActivity {
List<GameListItem>fls = new ArrayList<GameListItem>();
// Supported extensions to filter by
Set<String> validExts = new HashSet<String>(Arrays.asList(".gcm", ".iso", ".wbfs", ".gcz", ".dol", ".elf"));
Set<String> validExts = new HashSet<String>(Arrays.asList(".gcm", ".iso", ".wbfs", ".gcz", ".dol", ".elf", ".dff"));
Set<String> archiveExts = new HashSet<String>(Arrays.asList(".zip", ".rar", ".7z"));
// Search for any directories or supported files within the current dir.