Remove an aggressive assert for overtaxed audio systems

This commit is contained in:
Aaron Culliney 2019-06-28 19:13:11 -07:00
parent 412fb06011
commit e8e3110d18

View File

@ -1253,7 +1253,11 @@ static void MB_Update()
assert(requestedBufSize <= originalRequestedBufSize);
++counter;
} while (bufIdx < originalRequestedBufSize && counter < 2);
assert(bufIdx == originalRequestedBufSize);
if (UNLIKELY(bufIdx != originalRequestedBufSize)) {
// platform audio system getting bogged down?
LOG("WHOA, mockingboard dropping samples %lu != %lu", bufIdx, originalRequestedBufSize);
}
# endif
#endif