3
0
Fork 0
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:
ZappoMan 2013-10-02 20:46:49 -07:00
parent 9d231a50b6
commit 529bcc2b4a
2 changed files with 3 additions and 1 deletions

View file

@ -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),

View file

@ -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;