summaryrefslogtreecommitdiff
path: root/Source/Android/src
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2013-05-17 21:07:25 -0500
committerRyan Houdek <Sonicadvance1@gmail.com>2013-05-17 21:13:02 -0500
commitc30d00e904e4aeabc1e8e18a1cb52b19496148a1 (patch)
tree63f2adf7f1af7e81ab04ac093e2e9ebcf8abb7af /Source/Android/src
parenta905b18ef1188eeab6f55daa2f2064467c52e8ee (diff)
[Android] Support DFF files in the interface.
Diffstat (limited to 'Source/Android/src')
-rw-r--r--Source/Android/src/org/dolphinemu/dolphinemu/GameListView.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/GameListView.java b/Source/Android/src/org/dolphinemu/dolphinemu/GameListView.java
index df7d29e91f..d90bb32016 100644
--- a/Source/Android/src/org/dolphinemu/dolphinemu/GameListView.java
+++ b/Source/Android/src/org/dolphinemu/dolphinemu/GameListView.java
@@ -61,7 +61,8 @@ public class GameListView extends ListActivity {
ff.getName().toLowerCase().contains(".wbfs") ||
ff.getName().toLowerCase().contains(".gcz") ||
ff.getName().toLowerCase().contains(".dol") ||
- ff.getName().toLowerCase().contains(".elf"))
+ ff.getName().toLowerCase().contains(".elf") ||
+ ff.getName().toLowerCase().contains(".dff"))
fls.add(new GameListItem(getApplicationContext(), ff.getName(),"File Size: "+ff.length(),ff.getAbsolutePath()));
}
}