summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Device.h
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-11-13 00:53:24 -0800
committerJasper St. Pierre <jstpierre@mecheye.net>2014-11-28 10:50:45 -0800
commit367a42dcfdf61e5fcd3e3444190ed25d4d8fc114 (patch)
treea7ec9ee4e808582d835bddd0cfc104c58a82c831 /Source/Core/InputCommon/ControllerInterface/Device.h
parent0c056c64118673ece8fefcc22fa64b78c5431ab6 (diff)
ControllerInterface: Implement dummy UpdateInput / UpdateOutputs
Make the implementation here a bit easier.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Device.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Device.h b/Source/Core/InputCommon/ControllerInterface/Device.h
index c23c0d29bf..6b9c0d2994 100644
--- a/Source/Core/InputCommon/ControllerInterface/Device.h
+++ b/Source/Core/InputCommon/ControllerInterface/Device.h
@@ -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();