Fix bug when importing Qpro db on windows

This commit is contained in:
seth
2021-06-15 05:07:36 -05:00
committed by Jennifer Taylor
parent 456644af21
commit 7d93bc134a

View File

@@ -1828,8 +1828,8 @@ class ImportIIDX(ImportBase):
filename_offset = 0
qpro_id_offset = 1
packedfmt = (
'L' # filename
'L' # string containing id and name of the part
'Q' # filename
'Q' # string containing id and name of the part
)
if self.version == VersionConstants.IIDX_ROOTAGE:
stride = 16
@@ -1846,8 +1846,8 @@ class ImportIIDX(ImportBase):
filename_offset = 0
qpro_id_offset = 1
packedfmt = (
'L' # filename
'L' # string containing id and name of the part
'Q' # filename
'Q' # string containing id and name of the part
)
def read_string(offset: int) -> str: