diff --git a/titles/sao/handlers/base.py b/titles/sao/handlers/base.py index 4a3fb3c..08b7937 100644 --- a/titles/sao/handlers/base.py +++ b/titles/sao/handlers/base.py @@ -7,7 +7,7 @@ from csv import * class SaoRequestHeader: def __init__(self, data: bytes) -> None: - collection = struct.unpack_from("!HIII16s", data) + collection = struct.unpack_from("!H6xIII16s", data) self.cmd: int = collection[0] self.vendor_id: int = collection[1] self.game_id: int = collection[2]