We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce26b1e commit e32d6e8Copy full SHA for e32d6e8
1 file changed
prodj/pdblib/color.py
@@ -1,9 +1,10 @@
1
-from construct import Struct, Int16ub, Padding
+from construct import Struct, Int8ul, Padding
2
from .piostring import PioString
3
4
Color = Struct(
5
Padding(4),
6
- "id" / Int16ub,
+ "id_dup" / Int8ul, # set on some dbs, equals id
7
+ "id" / Int8ul,
8
Padding(2),
9
"name" / PioString
10
)
0 commit comments