1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:17:45 +00:00

ABuffer: clamp -> clip

More natural term when talking about audio :)
This commit is contained in:
Robin Burchell 2019-07-17 09:43:43 +02:00 committed by Andreas Kling
parent ed25d524f2
commit fd6cafaa84
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ struct ASample {
, right(right)
{}
void clamp()
void clip()
{
if (left > 1)
left = 1;