1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +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)); wxASSERT(isfinite(speed));
mT0 = t0; mT0 = t0;
mT1 = t1; mT1 = t1;
mSpeed = abs(speed); mSpeed = fabs(speed);
Reposition(t0); Reposition(t0);
} }