mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-01-07 16:31:25 +00:00
Remove an aggressive assert for overtaxed audio systems
This commit is contained in:
parent
412fb06011
commit
e8e3110d18
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user