(AST): fixed decompression.

This commit is contained in:
morkt 2018-06-14 22:59:39 +04:00
parent 0a8c95432f
commit 0fcfec22fb

View File

@ -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);
}
}
}