mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-13 06:32:40 +00:00
Merge pull request #13314 from jordan-woyak/input-expressions-assignment-op-fix
InputCommon: Fix input expression assignment operator behavior.
This commit is contained in:
commit
04775b6ef8
4 changed files with 113 additions and 97 deletions
|
@ -170,10 +170,13 @@ class Expression
|
|||
{
|
||||
public:
|
||||
virtual ~Expression() = default;
|
||||
virtual ControlState GetValue() const = 0;
|
||||
virtual ControlState GetValue() = 0;
|
||||
virtual void SetValue(ControlState state) = 0;
|
||||
virtual int CountNumControls() const = 0;
|
||||
virtual void UpdateReferences(ControlEnvironment& finder) = 0;
|
||||
|
||||
// Perform any side effects and return Expression to be SetValue'd.
|
||||
virtual Expression* GetLValue();
|
||||
};
|
||||
|
||||
class ParseResult
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue