Add .dff FIFO logs to the list of valid extensions in FolderBrowser.
This commit is contained in:
parent
0ba2594339
commit
c35916a3e5
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue