mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
NumericSetting: Stop values from binding to numbered input names.
This commit is contained in:
@ -143,14 +143,7 @@ public:
|
||||
}
|
||||
|
||||
bool IsSimpleValue() const override { return m_value.IsSimpleValue(); }
|
||||
|
||||
void SimplifyIfPossible() override
|
||||
{
|
||||
ValueType value;
|
||||
if (TryParse(m_value.m_input.GetExpression(), &value))
|
||||
m_value.SetValue(value);
|
||||
}
|
||||
|
||||
void SimplifyIfPossible() override;
|
||||
void SetExpressionFromValue() override;
|
||||
InputReference& GetInputReference() override { return m_value.m_input; }
|
||||
const InputReference& GetInputReference() const override { return m_value.m_input; }
|
||||
|
Reference in New Issue
Block a user