mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix reading CISO files on Android
This commit is contained in:
@ -42,7 +42,7 @@ public class FileListItem implements Comparable<FileListItem>
|
|||||||
String fileExtension = mPath.substring(extensionStart);
|
String fileExtension = mPath.substring(extensionStart);
|
||||||
|
|
||||||
// The extensions we care about.
|
// The extensions we care about.
|
||||||
Set<String> allowedExtensions = new HashSet<String>(Arrays.asList(".dff", ".dol", ".elf", ".gcm", ".gcz", ".iso", ".wad", ".wbfs"));
|
Set<String> allowedExtensions = new HashSet<String>(Arrays.asList(".ciso", ".dff", ".dol", ".elf", ".gcm", ".gcz", ".iso", ".wad", ".wbfs"));
|
||||||
|
|
||||||
// Check that the file has an extension we care about before trying to read out of it.
|
// Check that the file has an extension we care about before trying to read out of it.
|
||||||
if (allowedExtensions.contains(fileExtension.toLowerCase()))
|
if (allowedExtensions.contains(fileExtension.toLowerCase()))
|
||||||
|
Reference in New Issue
Block a user