mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 22:38:34 +00:00
InputCommon: Return error, if any, from ControlReference::SetExpression().
This commit is contained in:
parent
3cd4c56645
commit
cae741584b
2 changed files with 5 additions and 2 deletions
|
@ -50,12 +50,13 @@ std::string ControlReference::GetExpression() const
|
|||
return m_expression;
|
||||
}
|
||||
|
||||
void ControlReference::SetExpression(std::string expr)
|
||||
std::optional<std::string> ControlReference::SetExpression(std::string expr)
|
||||
{
|
||||
m_expression = std::move(expr);
|
||||
auto parse_result = ParseExpression(m_expression);
|
||||
m_parse_status = parse_result.status;
|
||||
m_parsed_expression = std::move(parse_result.expr);
|
||||
return parse_result.description;
|
||||
}
|
||||
|
||||
ControlReference::ControlReference() : range(1), m_parsed_expression(nullptr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue