mirror of
https://github.com/overte-org/overte.git
synced 2025-08-12 23:40:00 +02:00
Update ReceivedMessage progress to only trigger every 100 packets
This commit is contained in:
parent
5e27af5076
commit
2e76f0e0d8
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue