Try to parse `.ddi` files are wii u images.

This commit is contained in:
Maschell 2019-04-14 13:26:06 +02:00
parent 1f1a4fe1a9
commit 84cde7c536
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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));