From 5f8e0bd6bd238a9bed838a9cec9a9a027c27ab83 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 1 Dec 2023 17:32:55 -0800 Subject: [PATCH] add XB voice chat command structs --- src/CommandFormats.hh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/CommandFormats.hh b/src/CommandFormats.hh index 842a5fd6..f626368c 100644 --- a/src/CommandFormats.hh +++ b/src/CommandFormats.hh @@ -5271,6 +5271,12 @@ struct G_Unknown_6xB2 { // 6xB3: Unknown (Xbox; voice chat) +struct G_Unknown_XB_6xB3 { + G_ClientIDHeader header; + le_uint32_t num_frames; + // (0x0A * num_frames) bytes of data follows here. +} __packed__; + // 6xB3: CARD battle server data request (Episode 3) // CARD battle subcommands have multiple subsubcommands, which we name 6xBYxZZ, @@ -5317,6 +5323,11 @@ struct G_CardServerDataCommandHeader { // 6xB4: Unknown (Xbox; voice chat) +struct G_Unknown_XB_6xB4 { + G_ClientIDHeader header; + le_uint32_t unknown_a1; +} __packed__; + // 6xB4: CARD battle server response (Episode 3) - see 6xB3 above // 6xB5: CARD battle client command (Episode 3) - see 6xB3 above