mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
[Android] Support DFF files in the interface.
This commit is contained in:
@ -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()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user