mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 05:35:34 +08:00
(RPA): size might be represented by long integer.
This commit is contained in:
parent
bf94ae9a62
commit
4b67d5f82d
@ -100,7 +100,7 @@ namespace GameRes.Formats.RenPy
|
||||
}
|
||||
var entry = FormatCatalog.Instance.Create<RpaEntry> (name);
|
||||
entry.Offset = (long)(Convert.ToInt64 (tuple[0]) ^ key);
|
||||
entry.UnpackedSize = (uint)(Convert.ToInt32 (tuple[1]) ^ key);
|
||||
entry.UnpackedSize = (uint)(Convert.ToInt64 (tuple[1]) ^ key);
|
||||
entry.Size = entry.UnpackedSize;
|
||||
if (tuple.Count > 2)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user