Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Add wad file support.
  • Loading branch information
Sonicadvance1 committed Aug 26, 2013
1 parent 670b028 commit d83dffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -54,7 +54,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"));
Set<String> validExts = new HashSet<String>(Arrays.asList(".gcm", ".iso", ".wbfs", ".gcz", ".dol", ".elf", ".dff", ".wad"));

// Search for any directories or files within the current dir.
for(File entry : dirs)
Expand Down
Expand Up @@ -69,7 +69,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"));
Set<String> exts = new HashSet<String>(Arrays.asList(".gcm", ".iso", ".wbfs", ".gcz", ".dol", ".elf", ".dff", ".wad"));

for (int a = 0; a < intDirectories; ++a)
{
Expand Down Expand Up @@ -159,4 +159,4 @@ public void onAttach(Activity activity)
+ " must implement OnGameListZeroListener");
}
}
}
}

0 comments on commit d83dffe

Please sign in to comment.