1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-25 16:32:04 +00:00

fix extracted data to no longer produce compilation warnings

This commit is contained in:
Dragorn421 2025-02-05 23:30:27 +01:00
parent 66db26a999
commit 8ec6769124
No known key found for this signature in database
GPG key ID: 381AEBAF3D429335
2 changed files with 17 additions and 37 deletions

View file

@ -88,7 +88,7 @@ class LimbsArrayResourceABC(CDataArrayResource):
)
def get_c_declaration_base(self):
return f"{self.c_limb_type}* {self.symbol_name}[]"
return f"void* {self.symbol_name}[]"
class StandardLimbsArrayResource(LimbsArrayResourceABC):