repair the audio-mixer coma debug

This commit is contained in:
Stephen Birarda 2016-01-21 10:26:03 -08:00
parent 5e451360f7
commit 63da0074b4

View file

@ -828,7 +828,7 @@ void AudioMixer::broadcastMixes() {
usecToSleep = (++nextFrame * AudioConstants::NETWORK_FRAME_USECS) - timer.nsecsElapsed() / 1000; // ns to us
if (quint64(usecToSleep) > USECS_PER_SECOND) {
if (usecToSleep > int(USECS_PER_SECOND)) {
qDebug() << "DANGER: amount to sleep is" << usecToSleep;
qDebug() << "NextFrame is" << nextFrame << "and timer nsecs elapsed is" << timer.nsecsElapsed();
}