mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 08:35:34 +02:00
fix build buster
This commit is contained in:
parent
9d231a50b6
commit
529bcc2b4a
2 changed files with 3 additions and 1 deletions
libraries/voxels/src
|
@ -24,6 +24,8 @@ EditPacketBuffer::EditPacketBuffer(PACKET_TYPE type, unsigned char* buffer, ssiz
|
|||
memcpy(_currentBuffer, buffer, length);
|
||||
};
|
||||
|
||||
const int VoxelEditPacketSender::DEFAULT_MAX_PENDING_MESSAGES = PacketSender::DEFAULT_PACKETS_PER_SECOND;
|
||||
|
||||
|
||||
VoxelEditPacketSender::VoxelEditPacketSender(PacketSenderNotify* notify) :
|
||||
PacketSender(notify),
|
||||
|
|
|
@ -82,7 +82,7 @@ public:
|
|||
void setMaxPendingMessages(int maxPendingMessages) { _maxPendingMessages = maxPendingMessages; }
|
||||
|
||||
// the default number of pending messages we will store if no voxel servers are available
|
||||
const int DEFAULT_MAX_PENDING_MESSAGES = PacketSender::DEFAULT_PACKETS_PER_SECOND;
|
||||
static const int DEFAULT_MAX_PENDING_MESSAGES;
|
||||
|
||||
private:
|
||||
bool _shouldSend;
|
||||
|
|
Loading…
Reference in a new issue