From 7d93bc134a4b7882081e152d70df61a4791fb725 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 15 Jun 2021 05:07:36 -0500 Subject: [PATCH] Fix bug when importing Qpro db on windows --- bemani/utils/read.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bemani/utils/read.py b/bemani/utils/read.py index ae41dd8..6bf0809 100644 --- a/bemani/utils/read.py +++ b/bemani/utils/read.py @@ -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: