You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, intrigue_corruption::offered_relationship is an enum of type vague_relationship_type with an overridden base type of int32_t but the type is imported into ghidra as 2 bytes long, matching the underlying type of the enum but ignoring the override.
the specific xml for this example is: <enum name='offered_relationship' type-name='vague_relationship_type' base-type='int32_t'/>
this should result in a 4-byte allocation for that field, but in the structure actually generated by df_import_structures the allocation is 2 bytes. in this particular instance, padding insertion prevents an issue, but this is happenstance
The text was updated successfully, but these errors were encountered:
For example,
intrigue_corruption::offered_relationship
is an enum of typevague_relationship_type
with an overridden base type ofint32_t
but the type is imported into ghidra as 2 bytes long, matching the underlying type of the enum but ignoring the override.the specific xml for this example is:
<enum name='offered_relationship' type-name='vague_relationship_type' base-type='int32_t'/>
this should result in a 4-byte allocation for that field, but in the structure actually generated by
df_import_structures
the allocation is 2 bytes. in this particular instance, padding insertion prevents an issue, but this is happenstanceThe text was updated successfully, but these errors were encountered: