mirror of
https://github.com/Maschell/fuse-wiiu.git
synced 2024-11-24 23:36:53 +01:00
Try to parse .ddi
files are wii u images.
This commit is contained in:
parent
1f1a4fe1a9
commit
84cde7c536
2
pom.xml
2
pom.xml
@ -92,7 +92,7 @@
|
||||
<dependency>
|
||||
<groupId>com.github.Maschell</groupId>
|
||||
<artifactId>JNUSLib</artifactId>
|
||||
<version> 6e9b8df</version>
|
||||
<version> 7d8bb58</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
|
@ -39,7 +39,7 @@ public class FuseContainerWrapper {
|
||||
}
|
||||
}
|
||||
|
||||
if (c.exists() && c.isFile() && (c.getName().endsWith(".wux") || c.getName().endsWith(".wud"))) {
|
||||
if (c.exists() && c.isFile() && (c.getName().endsWith(".wux") || c.getName().endsWith(".wud") || c.getName().endsWith(".ddi"))) {
|
||||
|
||||
result.put(prefix + c.getName(), new WUDFuseContainer(parent, c));
|
||||
result.put(prefix + "[EXTRA] " + c.getName(), new WUDMountedFuseContainer(parent, c));
|
||||
|
Loading…
Reference in New Issue
Block a user