Device: Fix header structure, should not be a constant 1
This commit is contained in:
parent
1442c945cc
commit
93f70f73c2
|
@ -25,7 +25,7 @@ class _Types(Enum):
|
||||||
class _Structures:
|
class _Structures:
|
||||||
header = Struct(
|
header = Struct(
|
||||||
"signature" / Const(b"WVD"),
|
"signature" / Const(b"WVD"),
|
||||||
"version" / Const(Int8ub, 1)
|
"version" / Int8ub
|
||||||
)
|
)
|
||||||
|
|
||||||
v2 = Struct(
|
v2 = Struct(
|
||||||
|
|
Loading…
Reference in New Issue