Fixed a bug where parsing RLC files would always fail.

Caused by the PRC buffer cursor not being rewound before and after decryption.
Fixes #3.
This commit is contained in:
jtuu 2019-11-12 22:23:38 +02:00
parent 66525ca00c
commit 2267419c8e
2 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class PrcDecryptor {
} }
} }
return out_cursor; return out_cursor.seek_start(0);
} }
private construct_keys(key: number): void { private construct_keys(key: number): void {

View File

@ -32,6 +32,7 @@ export function parse_rlc(cursor: Cursor): Cursor[] {
const file = cursor.take(size); const file = cursor.take(size);
file.endianness = Endianness.Little; file.endianness = Endianness.Little;
file.seek_start(0);
files.push(parse_prc(file)); files.push(parse_prc(file));
cursor.seek_start(prev_pos); cursor.seek_start(prev_pos);