mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Use Buffer not SharedBuffer in NetworkPacket::oldForgePacket
This commit is contained in:
parent
ff924ef0dc
commit
6a48844eba
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue