diff --git a/libraries/networking/src/PacketList.cpp b/libraries/networking/src/PacketList.cpp index 31b793cc76..bb044d6ae7 100644 --- a/libraries/networking/src/PacketList.cpp +++ b/libraries/networking/src/PacketList.cpp @@ -11,9 +11,9 @@ #include "PacketList.h" -PacketList::PacketList(PacketType::Value packetType, bool isOrdered) : +PacketList::PacketList(PacketType::Value packetType) : _packetType(packetType), - _isOrdered(isOrdered) + _isOrdered(false) { } diff --git a/libraries/networking/src/PacketList.h b/libraries/networking/src/PacketList.h index 010f595938..ae94273953 100644 --- a/libraries/networking/src/PacketList.h +++ b/libraries/networking/src/PacketList.h @@ -16,7 +16,7 @@ template class PacketList : public QIODevice { public: - PacketList(PacketType::Value packetType, bool isOrdered = false); + PacketList(PacketType::Value packetType); virtual bool isSequential() const { return true; }