mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug in .bin format detection.
This commit is contained in:
parent
f4b8b30590
commit
f36b102ec1
@ -50,13 +50,13 @@ export function parse_bin(
|
||||
entry_labels: number[] = [0],
|
||||
lenient: boolean = false,
|
||||
): BinFile {
|
||||
const dc_gc_format = cursor.u8_at(0) !== 4652;
|
||||
|
||||
const object_code_offset = cursor.u32();
|
||||
const label_offset_table_offset = cursor.u32(); // Relative offsets
|
||||
const size = cursor.u32();
|
||||
cursor.seek(4); // Always seems to be 0xFFFFFFFF for BB.
|
||||
|
||||
const dc_gc_format = object_code_offset !== 4652;
|
||||
|
||||
let quest_id: number;
|
||||
let language: number;
|
||||
|
||||
@ -300,7 +300,7 @@ function parse_object_code(
|
||||
// Should never happen either.
|
||||
if (!segment) {
|
||||
logger.error(`Couldn't create segment for offset ${offset}.`);
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -78,8 +78,9 @@ exports[`Renders correctly. 1`] = `
|
||||
</span>
|
||||
</span>
|
||||
<input
|
||||
accept=".qst"
|
||||
accept=".bin, .dat, .qst"
|
||||
class="core_FileButton_input core_Button_inner"
|
||||
multiple=""
|
||||
type="file"
|
||||
/>
|
||||
</label>
|
||||
|
Loading…
Reference in New Issue
Block a user