Corrected an invisible case from float to int in the region code
This commit is contained in:
parent
7622e6e27b
commit
25f1efe0fc
1 changed files with 1 additions and 1 deletions
|
|
@ -649,7 +649,7 @@ uint32_t sfz::Region::getOffset() noexcept
|
||||||
return offset + offsetDistribution(Random::randomGenerator);
|
return offset + offsetDistribution(Random::randomGenerator);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t sfz::Region::getDelay() noexcept
|
float sfz::Region::getDelay() noexcept
|
||||||
{
|
{
|
||||||
return delay + delayDistribution(Random::randomGenerator);
|
return delay + delayDistribution(Random::randomGenerator);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue