mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 18:23:22 +02:00
forgot to add "break;"s
This commit is contained in:
parent
4d84e1fff1
commit
e3db60d1ef
3 changed files with 5 additions and 2 deletions
|
@ -147,10 +147,13 @@ void DatagramProcessor::processDatagrams() {
|
|||
}
|
||||
case PacketTypeVoxelEditNack:
|
||||
application->_voxelEditSender.processNackPacket(incomingPacket);
|
||||
break;
|
||||
case PacketTypeParticleEditNack:
|
||||
application->_particleEditSender.processNackPacket(incomingPacket);
|
||||
break;
|
||||
case PacketTypeModelEditNack:
|
||||
application->_modelEditSender.processNackPacket(incomingPacket);
|
||||
break;
|
||||
default:
|
||||
nodeList->processNodeData(senderSockAddr, incomingPacket);
|
||||
break;
|
||||
|
|
|
@ -343,7 +343,7 @@ bool OctreeEditPacketSender::process() {
|
|||
return PacketSender::process();
|
||||
}
|
||||
|
||||
void OctreeEditPacketSender::parseNackPacket(const QByteArray& packet) {
|
||||
void OctreeEditPacketSender::processNackPacket(const QByteArray& packet) {
|
||||
// parse sending node from packet, retrieve packet history for that node
|
||||
QUuid sendingNodeUUID = uuidFromPacketHeader(packet);
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ public:
|
|||
virtual void adjustEditPacketForClockSkew(unsigned char* codeColorBuffer, ssize_t length, int clockSkew) { };
|
||||
|
||||
public:
|
||||
void parseNackPacket(const QByteArray& packet);
|
||||
void processNackPacket(const QByteArray& packet);
|
||||
|
||||
protected:
|
||||
bool _shouldSend;
|
||||
|
|
Loading…
Reference in a new issue