summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Chat.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_Chat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/packets/cPacket_Chat.h b/source/packets/cPacket_Chat.h
index fac4a4097..cb154f732 100644
--- a/source/packets/cPacket_Chat.h
+++ b/source/packets/cPacket_Chat.h
@@ -10,7 +10,7 @@ public:
cPacket_Chat( const std::string & a_Message ) : m_Message( a_Message) { m_PacketID = E_CHAT; }
virtual cPacket* Clone() const { return new cPacket_Chat(*this); }
- virtual int Parse(const char * a_Data, int a_Size) override;
+ virtual int Parse(cByteBuffer & a_Buffer) override;
virtual void Serialize(AString & a_Data) const override;
AString m_Message;