1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-15 16:17:41 +02:00

Bug859 - Play indicator incorrect for very short loop plays (< 15 ms)

This commit is contained in:
Paul-Licameli 2015-04-08 11:58:39 -04:00
parent 36dd49ff50
commit 44fc5b9f4d

View File

@ -3888,7 +3888,7 @@ int audacityAudioCallback(const void *inputBuffer, void *outputBuffer,
}
// Wrap to start if looping
if (gAudioIO->mPlayLooped && gAudioIO->mTime >= gAudioIO->mT1)
while (gAudioIO->mPlayLooped && gAudioIO->mTime >= gAudioIO->mT1)
{
// LL: This is not exactly right, but I'm at my wits end trying to
// figure it out. Feel free to fix it. :-)