mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 03:37:49 +02:00
CR
This commit is contained in:
parent
8c1fb67825
commit
449d6a04d8
3 changed files with 5 additions and 5 deletions
|
@ -3042,7 +3042,7 @@ int Application::sendNackPackets() {
|
|||
++it;
|
||||
}
|
||||
|
||||
if (nackPacketList.getNumPackets()) {
|
||||
if (nackPacketList->getNumPackets()) {
|
||||
packetsSent += nackPacketList->getNumPackets();
|
||||
|
||||
// send the packet list
|
||||
|
|
|
@ -38,11 +38,11 @@ public:
|
|||
Retransmission,
|
||||
Duplicate,
|
||||
|
||||
NumEvent
|
||||
NumEvents
|
||||
};
|
||||
|
||||
// construct a vector for the events of the size of our Enum - default value is zero
|
||||
std::vector<int> events = std::vector<int>((int) Event::NumEvent, 0);
|
||||
std::vector<int> events = std::vector<int>((int) Event::NumEvents, 0);
|
||||
|
||||
// packet counts and sizes
|
||||
int sentPackets { 0 };
|
||||
|
|
Loading…
Reference in a new issue