diff --git a/src/de/mas/wiiu/jnus/implementations/wud/reader/WUDDiscReader.java b/src/de/mas/wiiu/jnus/implementations/wud/reader/WUDDiscReader.java index 9faca71..1742925 100644 --- a/src/de/mas/wiiu/jnus/implementations/wud/reader/WUDDiscReader.java +++ b/src/de/mas/wiiu/jnus/implementations/wud/reader/WUDDiscReader.java @@ -56,7 +56,7 @@ public abstract class WUDDiscReader { public byte[] readEncryptedToByteArray(long offset, long fileoffset, long size) throws IOException { ByteArrayOutputStream out = new ByteArrayOutputStream(); - readEncryptedToOutputStream(out, offset, size); + readEncryptedToOutputStream(out, offset + fileoffset, size); return out.toByteArray(); }