1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:47:44 +00:00

Piano: Clean up code style with help from clang-tidy

Includes shadowed variables and if-else return.
This commit is contained in:
kleines Filmröllchen 2023-02-09 13:36:10 +01:00 committed by Andrew Kaster
parent 401a21e4f4
commit 9f5f6b3868
4 changed files with 5 additions and 8 deletions

View file

@ -30,12 +30,12 @@ ProcessorParameterSlider::ProcessorParameterSlider(Orientation orientation, DSP:
if (m_value_label != nullptr)
m_value_label->set_text(DeprecatedString::formatted("{:.2f}", static_cast<double>(m_parameter)));
on_change = [this](auto value) {
on_change = [this](auto raw_value) {
if (m_currently_setting_from_ui)
return;
m_currently_setting_from_ui = true;
DSP::ParameterFixedPoint real_value;
real_value.raw() = value;
real_value.raw() = raw_value;
if (is_logarithmic())
// FIXME: Implement exponential for fixed point
real_value = exp2(static_cast<double>(real_value));