mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
fix a bug in the BSA reader for LE archives
This commit is contained in:
parent
912ad75bfa
commit
72ead783a5
@ -366,7 +366,7 @@ namespace Compression.BSA
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
throw new NotImplementedException("Compressed Skyrim LE archives not yet implemented");
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -379,7 +379,7 @@ namespace Compression.BSA
|
||||
file_size -= name_size + 1;
|
||||
rdr.BaseStream.Position = _offset + 1 + name_size;
|
||||
}
|
||||
rdr.BaseStream.CopyToLimit(output, Size);
|
||||
rdr.BaseStream.CopyToLimit(output, file_size);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user