Update ReceivedMessage progress to only trigger every 100 packets

This commit is contained in:
Ryan Huffman 2015-11-30 11:52:49 -08:00
parent 5e27af5076
commit 2e76f0e0d8

View file

@ -54,7 +54,7 @@ void ReceivedMessage::appendPacket(NLPacket& packet) {
"We should not be appending to a complete message");
// Limit progress signal to every X packets
const int EMIT_PROGRESS_EVERY_X_PACKETS = 50;
const int EMIT_PROGRESS_EVERY_X_PACKETS = 100;
++_numPackets;