mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Also encode BA2 filenames with UTF8
This commit is contained in:
parent
197036d916
commit
6561e29ac6
@ -87,7 +87,7 @@ namespace Compression.BSA
|
||||
|
||||
foreach (var entry in _entries)
|
||||
{
|
||||
var bytes = Encoding.UTF7.GetBytes(entry.FullName);
|
||||
var bytes = Encoding.UTF8.GetBytes(entry.FullName);
|
||||
bw.Write((ushort)bytes.Length);
|
||||
await bw.BaseStream.WriteAsync(bytes, 0, bytes.Length);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user