mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
ControllerInterface: Make CoalesceExpression not set the inactive child's value (rumble) to 0. This caused rumble to not enable when a control expression was both a valid "bareword" and "complex" expression.
This commit is contained in:
@ -340,11 +340,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
ControlState GetValue() const override { return GetActiveChild()->GetValue(); }
|
ControlState GetValue() const override { return GetActiveChild()->GetValue(); }
|
||||||
void SetValue(ControlState value) override
|
void SetValue(ControlState value) override { GetActiveChild()->SetValue(value); }
|
||||||
{
|
|
||||||
m_lhs->SetValue(GetActiveChild() == m_lhs ? value : 0.0);
|
|
||||||
m_rhs->SetValue(GetActiveChild() == m_rhs ? value : 0.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
int CountNumControls() const override { return GetActiveChild()->CountNumControls(); }
|
int CountNumControls() const override { return GetActiveChild()->CountNumControls(); }
|
||||||
operator std::string() const override
|
operator std::string() const override
|
||||||
@ -549,5 +545,5 @@ std::pair<ParseStatus, std::unique_ptr<Expression>> ParseExpression(const std::s
|
|||||||
std::move(complex_result.expr));
|
std::move(complex_result.expr));
|
||||||
return std::make_pair(complex_result.status, std::move(combined_expr));
|
return std::make_pair(complex_result.status, std::move(combined_expr));
|
||||||
}
|
}
|
||||||
}
|
} // namespace ExpressionParser
|
||||||
}
|
} // namespace ciface
|
||||||
|
Reference in New Issue
Block a user