mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 14:03:55 +02:00
removed forgotten semicolon in stats string
This commit is contained in:
parent
7a6b20fd84
commit
4abfd2b6b7
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ QString AudioMixerClientData::getAudioStreamStatsString() const {
|
|||
+ " current:" + QString::number(currentJitterBuffer)
|
||||
+ " available:" + QString::number(framesAvailable)
|
||||
+ " samples:" + QString::number(samplesAvailable)
|
||||
+ " overflows:" + QString::number(overflowCount);
|
||||
+ " overflows:" + QString::number(overflowCount)
|
||||
+ " early:" + QString::number(streamStats._packetsEarly)
|
||||
+ " late:" + QString::number(streamStats._packetsLate)
|
||||
+ " lost:" + QString::number(streamStats._packetsLost);
|
||||
|
|
Loading…
Reference in a new issue