diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pso/TProtocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/pso/TProtocol.h b/include/pso/TProtocol.h index 4a1d05a..ac2589e 100644 --- a/include/pso/TProtocol.h +++ b/include/pso/TProtocol.h @@ -26,7 +26,7 @@ struct packet { struct { packet_header header; TArray<u8, 0x7c00-sizeof(packet_header)> data; - } packet; + } pkt; u8 bytes[0x7c00]; }; @@ -95,7 +95,7 @@ public: TPlyClientConfig m_client_config; int m_packet_offset; int m_packet_size; - packet m_packet; + struct packet m_packet; TArray<recv_packet_handler, 52> m_recv_handlers; public: TProtocol(TObject *parent, u16 sub_version, int language, char *serial_number, char *access_key, char *password); |