mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:44:01 +02:00
remove warning about signed/unsigned comparison
This commit is contained in:
parent
8b3af0b9cb
commit
ec80ccdb9c
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ bool PositionalAudioRingBuffer::shouldBeAddedToMix() {
|
|||
}
|
||||
|
||||
return false;
|
||||
} else if (samplesAvailable() < (unsigned int)samplesPerFrame) {
|
||||
} else if (samplesAvailable() < samplesPerFrame) {
|
||||
// if the buffer doesn't have a full frame of samples to take for mixing, it is starved
|
||||
_isStarved = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue