mirror of
https://github.com/Maschell/fuse-wiiu.git
synced 2024-11-22 06:39:14 +01:00
Use the latest JNUSLib version. This fixes a bug while parsing the FST. The reading speed should also be increased.
This commit is contained in:
parent
041aa4c949
commit
245aecef89
2
pom.xml
2
pom.xml
@ -92,7 +92,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.Maschell</groupId>
|
<groupId>com.github.Maschell</groupId>
|
||||||
<artifactId>JNUSLib</artifactId>
|
<artifactId>JNUSLib</artifactId>
|
||||||
<version>c1a1961</version>
|
<version>3eb299d</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
|
@ -212,7 +212,7 @@ public class NUSTitleEncryptedFuseContainer implements FuseContainer {
|
|||||||
|
|
||||||
byte[] data;
|
byte[] data;
|
||||||
try {
|
try {
|
||||||
data = title.getDataProvider().getChunkFromContent(c, offset, (int) size);
|
data = title.getDataProvider().readContent(c, offset, (int) size);
|
||||||
buf.put(0, data, 0, data.length);
|
buf.put(0, data, 0, data.length);
|
||||||
return data.length;
|
return data.length;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user