mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
ControllerInterface: Implement dummy UpdateInput / UpdateOutputs
Make the implementation here a bit easier.
This commit is contained in:
@ -100,8 +100,8 @@ public:
|
||||
virtual std::string GetName() const = 0;
|
||||
virtual int GetId() const = 0;
|
||||
virtual std::string GetSource() const = 0;
|
||||
virtual bool UpdateInput() = 0;
|
||||
virtual bool UpdateOutput() = 0;
|
||||
virtual bool UpdateInput() { return true; }
|
||||
virtual bool UpdateOutput() { return true; }
|
||||
|
||||
virtual void ClearInputState();
|
||||
|
||||
|
Reference in New Issue
Block a user