remove warning about signed/unsigned comparison

This commit is contained in:
Andrew Meadows 2014-07-02 10:49:05 -07:00
parent 8b3af0b9cb
commit ec80ccdb9c

View file

@ -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;