Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Organize the list of allowed file extensions for the folder…
… browser and game list alphabetically.

Keeps things nice and sorted.
  • Loading branch information
lioncash committed Sep 8, 2013
1 parent c306daf commit f382a53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -53,7 +53,7 @@ private void Fill(File currDir)
List<FolderBrowserItem>fls = new ArrayList<FolderBrowserItem>();

// Supported extensions to filter by
Set<String> validExts = new HashSet<String>(Arrays.asList(".gcm", ".iso", ".wbfs", ".gcz", ".dol", ".elf", ".dff", ".wad"));
Set<String> validExts = new HashSet<String>(Arrays.asList(".dff", ".dol", ".elf", ".gcm", ".gcz", ".iso", ".wad", ".wbfs"));

// Search for any directories or files within the current dir.
for(File entry : dirs)
Expand Down
Expand Up @@ -70,7 +70,7 @@ private void Fill()
int intDirectories = Integer.parseInt(Directories);

// Extensions to filter by.
Set<String> exts = new HashSet<String>(Arrays.asList(".gcm", ".iso", ".wbfs", ".gcz", ".dol", ".elf", ".dff", ".wad"));
Set<String> exts = new HashSet<String>(Arrays.asList(".dff", ".dol", ".elf", ".gcm", ".gcz", ".iso", ".wad", ".wbfs"));

for (int a = 0; a < intDirectories; ++a)
{
Expand Down

0 comments on commit f382a53

Please sign in to comment.