[Android] Support DFF files in the interface.
This commit is contained in:
parent
a905b18ef1
commit
c30d00e904
Source/Android/src/org/dolphinemu/dolphinemu
|
@ -61,7 +61,8 @@ public class GameListView extends ListActivity {
|
||||||
ff.getName().toLowerCase().contains(".wbfs") ||
|
ff.getName().toLowerCase().contains(".wbfs") ||
|
||||||
ff.getName().toLowerCase().contains(".gcz") ||
|
ff.getName().toLowerCase().contains(".gcz") ||
|
||||||
ff.getName().toLowerCase().contains(".dol") ||
|
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()));
|
fls.add(new GameListItem(getApplicationContext(), ff.getName(),"File Size: "+ff.length(),ff.getAbsolutePath()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue