From f43225daeb23e17120d35eb610593475daaeb01e Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 15 Mar 2023 17:01:16 -0300 Subject: context: Add missing definition of `game_command_union` oof, copy-paste mistake. --- context.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'context.h') diff --git a/context.h b/context.h index 7a92fca..a869b7d 100644 --- a/context.h +++ b/context.h @@ -806,6 +806,13 @@ union ipv4_addr { u8 addr_bytes[4]; }; +// pso/packet_classes.h +union game_command_union { + struct game_command game_cmd; + struct extended_game_command ext_game_cmd; + u8 bytes[1024]; +}; + // pso/TObject.h // Enum defs. enum object_flags { -- cgit v1.2.3-13-gbd6f