mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-24 16:01:26 +00:00
check attributes of xml resources elements
This commit is contained in:
parent
ad6ff6df27
commit
e0b8f3087d
4 changed files with 112 additions and 7 deletions
|
@ -129,7 +129,10 @@ def process_pool(
|
|||
raise NotImplementedError(
|
||||
f"alignment for {rescoll.start_address.vram=:#08X}"
|
||||
)
|
||||
elif isinstance(rescoll.start_address, SegmentStartAddress):
|
||||
elif (
|
||||
isinstance(rescoll.start_address, SegmentStartAddress)
|
||||
or rescoll.start_address is None
|
||||
):
|
||||
alignment = 8
|
||||
else:
|
||||
raise NotImplementedError(rescoll.start_address)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue