mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 03:58:07 +02:00
fix octreePacketSent call with const NLPacket&
This commit is contained in:
parent
c903d284bb
commit
7e07754773
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public:
|
||||||
void forceNodeShutdown();
|
void forceNodeShutdown();
|
||||||
bool isShuttingDown() const { return _isShuttingDown; }
|
bool isShuttingDown() const { return _isShuttingDown; }
|
||||||
|
|
||||||
void octreePacketSent() { packetSent(_octreePacket); }
|
void octreePacketSent() { packetSent(*_octreePacket.get()); }
|
||||||
void packetSent(const NLPacket& packet);
|
void packetSent(const NLPacket& packet);
|
||||||
|
|
||||||
OCTREE_PACKET_SEQUENCE getSequenceNumber() const { return _sequenceNumber; }
|
OCTREE_PACKET_SEQUENCE getSequenceNumber() const { return _sequenceNumber; }
|
||||||
|
|
Loading…
Reference in a new issue