summaryrefslogtreecommitdiff
path: root/include/pso
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-03-07 10:01:23 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-03-07 10:01:23 -0400
commit94c69b351d3bd49d4856b20c22c9fb420fcaece0 (patch)
treec3e0cc80f64899711f1ff61ad2674cc2067c6763 /include/pso
parent9ab79683d722987d34fd6da194958284ca805e23 (diff)
TProtocol: Rename `packet.packet` -> `packet.pkt`
Diffstat (limited to 'include/pso')
-rw-r--r--include/pso/TProtocol.h4
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);