1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-25 22:21:14 +01:00

Fix line endings

This commit is contained in:
Paul Licameli
2018-01-06 20:15:13 -05:00
parent 2c3331424b
commit 6f7739464e

View File

@@ -102,7 +102,10 @@ bool ContrastDialog::GetDB(float &dB)
}
// Gives warning C4056, Overflow in floating-point constant arithmetic
// -INFINITY is intentional here.
// Looks like we are stuck with this warning, as
// Looks like we are stuck with this warning, as
// #pragma warning( disable : 4056)
// even around the whole function does not disable it successfully.
dB = (rms == 0.0)? -INFINITY : LINEAR_TO_DB(rms);
return true;
}