1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Use Buffer not SharedBuffer in NetworkPacket::oldForgePacket

This commit is contained in:
Loic Blot
2015-03-30 19:55:14 +02:00
parent ff924ef0dc
commit 6a48844eba

View File

@@ -512,7 +512,7 @@ NetworkPacket& NetworkPacket::operator<<(video::SColor src)
Buffer<u8> NetworkPacket::oldForgePacket()
{
SharedBuffer<u8> sb(m_datasize + 2);
Buffer<u8> sb(m_datasize + 2);
writeU16(&sb[0], m_command);
u8* datas = getU8Ptr(0);