|
@@ -237,6 +237,7 @@ class ByteSigEntry(LocationEntry, tag="bytesig", kw_only=True):
|
|
|
)
|
|
|
return {
|
|
|
KEY_AS_IS: self.contents.gameconf_str,
|
|
|
+ KEY_SUFFIX("OFFSET"): self.offset_fmt.format_value(self.offset),
|
|
|
}
|
|
|
|
|
|
with bin.mmap() as memory:
|
|
@@ -250,6 +251,7 @@ class ByteSigEntry(LocationEntry, tag="bytesig", kw_only=True):
|
|
|
raise AssertionError(f"Multiple matches found for {self.contents.display_str}")
|
|
|
return {
|
|
|
KEY_AS_IS: self.contents.gameconf_str,
|
|
|
+ KEY_SUFFIX("OFFSET"): self.offset_fmt.format_value(self.offset),
|
|
|
}
|
|
|
|
|
|
|