1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-11 09:31:13 +02:00

Use fabs() instead of abs()

This commit is contained in:
Leland Lucius 2015-05-04 17:50:44 -05:00
parent 303faaa15b
commit c009157290

View File

@ -767,7 +767,7 @@ void Mixer::SetTimesAndSpeed(double t0, double t1, double speed)
wxASSERT(isfinite(speed));
mT0 = t0;
mT1 = t1;
mSpeed = abs(speed);
mSpeed = fabs(speed);
Reposition(t0);
}