Increase forced clipping level

This commit is contained in:
Oskar Wallgren
2019-01-28 19:10:40 +01:00
parent c1ae1ed5f4
commit 8618ab5d8f

View File

@@ -95,7 +95,7 @@ bool sanitize( sampleFrame * src, int frames )
}
else
{
src[f][c] = qBound( -10.0f, src[f][c], 10.0f );
src[f][c] = qBound( -1000.0f, src[f][c], 1000.0f );
}
}
}