mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-16 08:34:10 +02:00
Bug1746: Playing Note & Wave at once should stop at end of selection
This commit is contained in:
parent
a5aaaf5176
commit
02403c1237
@ -4678,6 +4678,7 @@ int audacityAudioCallback(const void *inputBuffer, void *outputBuffer,
|
||||
if ((gAudioIO->ReversedTime()
|
||||
? gAudioIO->mTime <= gAudioIO->mT1
|
||||
: gAudioIO->mTime >= gAudioIO->mT1))
|
||||
gAudioIO->mMidiOutputComplete = true,
|
||||
callbackReturn = paComplete;
|
||||
}
|
||||
|
||||
@ -4738,6 +4739,7 @@ int audacityAudioCallback(const void *inputBuffer, void *outputBuffer,
|
||||
? gAudioIO->mTime <= gAudioIO->mT1
|
||||
: gAudioIO->mTime >= gAudioIO->mT1)) {
|
||||
|
||||
gAudioIO->mMidiOutputComplete = true,
|
||||
callbackReturn = paComplete;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user