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