mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
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:
parent
66525ca00c
commit
2267419c8e
@ -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 {
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user