Skip to content

Commit

Permalink
Fixed data_mobj.elf parse error
Browse files Browse the repository at this point in the history
Some data_mobj wouldn't open due to field_0xd0 being marked as int instead of a string. This has been fixed.
  • Loading branch information
Hunter-Xuman committed Jun 18, 2024
1 parent 5dd3406 commit c7b595b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/elf/fileTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,7 @@ const typedefs = {
field_0xc0: new Property("string", "Something Lct-related"),
field_0xc8: "int",
field_0xcc: "int",
field_0xd0: "int",
field_0xd4: "int",
field_0xd0: "string",
field_0xd8: "int",
field_0xdc: "int",
field_0xe0: "int",
Expand Down

0 comments on commit c7b595b

Please sign in to comment.