mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 05:35:34 +08:00
(AST): fixed decompression.
This commit is contained in:
parent
0a8c95432f
commit
0fcfec22fb
@ -123,7 +123,9 @@ namespace GameRes.Formats.AST
|
||||
return new XoredStream (input, 0xFF);
|
||||
return input;
|
||||
}
|
||||
return new XoredStream (new LzssStream (input), 0xFF);
|
||||
var lzss = new LzssStream (input);
|
||||
lzss.Config.FrameFill = 0xFF;
|
||||
return new XoredStream (lzss, 0xFF);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user