more windows build fixes

This commit is contained in:
Brad Hefta-Gaub 2014-01-11 00:45:45 -08:00
parent cb828d330a
commit 9dea84c227

View file

@ -53,7 +53,7 @@ int PositionalAudioRingBuffer::parsePositionalData(unsigned char* sourceBuffer,
currentBuffer += sizeof(_orientation);
// if this node sent us a NaN for first float in orientation then don't consider this good audio and bail
if (std::isnan(_orientation.x)) {
if (isnan_(_orientation.x)) {
reset();
return 0;
}