mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
remove warning about signed-unsigned comparison
This commit is contained in:
parent
aa667464c0
commit
c3dbae1bd3
1 changed files with 1 additions and 1 deletions
|
@ -1083,7 +1083,7 @@ void AudioClient::outputNotify() {
|
|||
if (recentUnfulfilled > 0) {
|
||||
if (_outputStarveDetectionEnabled.get()) {
|
||||
quint64 now = usecTimestampNow() / 1000;
|
||||
quint64 dt = now - _outputStarveDetectionStartTimeMsec;
|
||||
int dt = (int)(now - _outputStarveDetectionStartTimeMsec);
|
||||
if (dt > _outputStarveDetectionPeriodMsec.get()) {
|
||||
_outputStarveDetectionStartTimeMsec = now;
|
||||
_outputStarveDetectionCount = 0;
|
||||
|
|
Loading…
Reference in a new issue