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
df_import_structures identifies the building_type enum as requiring 32 bits even though it can fit in 16 (indeed probably 8) because the enum includes a value NONE with value -1. the enum imported into ghidra encodes this value as 0xffffffff instead of as -1 (which itself isn't necessarily wrong) and thus concluded from this that the enum required 4 bytes (which is)
The text was updated successfully, but these errors were encountered:
df_import_structures
identifies thebuilding_type
enum as requiring 32 bits even though it can fit in 16 (indeed probably 8) because the enum includes a valueNONE
with value-1
. the enum imported into ghidra encodes this value as0xffffffff
instead of as-1
(which itself isn't necessarily wrong) and thus concluded from this that the enum required 4 bytes (which is)The text was updated successfully, but these errors were encountered: