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:
parent
303faaa15b
commit
c009157290
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user