Merge pull request #484 from atsushieno/patch-1
accept samplesPerBlock up to 8192 (inclusive)
This commit is contained in:
commit
0fb8abdf44
1 changed files with 1 additions and 1 deletions
|
|
@ -776,7 +776,7 @@ void sfz::Synth::garbageCollect() noexcept
|
|||
|
||||
void sfz::Synth::setSamplesPerBlock(int samplesPerBlock) noexcept
|
||||
{
|
||||
ASSERT(samplesPerBlock < config::maxBlockSize);
|
||||
ASSERT(samplesPerBlock <= config::maxBlockSize);
|
||||
|
||||
const std::lock_guard<SpinMutex> disableCallback { callbackGuard };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue