diff options
| author | Mat M <mathew1800@gmail.com> | 2017-02-08 20:01:18 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-08 20:01:18 -0500 |
| commit | 73382852b7636642d6614d7b7919ee6173dfe71f (patch) | |
| tree | 3b0a26314cb87c4b905c97988fa310b9b4fe569f /Source/Core/InputCommon/ControllerInterface/Device.cpp | |
| parent | 17e4b450fbc35cb3fb44c3a3a93203c59650072a (diff) | |
| parent | 2d51bf579f4c782951a3b9e7cd40327cdeb8b6b6 (diff) | |
Merge pull request #4502 from ligfx/extractcontrolreference
InputCommon: Extract ControlReference from ControllerInterface
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Device.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Device.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Device.cpp b/Source/Core/InputCommon/ControllerInterface/Device.cpp index 401e5b035b..930352a908 100644 --- a/Source/Core/InputCommon/ControllerInterface/Device.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Device.cpp @@ -7,12 +7,6 @@ #include <string> #include <tuple> -// For InputGateOn() -// This is a really bad layering violation, but it's the cleanest -// place I could find to put it. -#include "Core/ConfigManager.h" -#include "Core/Host.h" - #include "InputCommon/ControllerInterface/Device.h" namespace ciface @@ -67,16 +61,6 @@ Device::Output* Device::FindOutput(const std::string& name) const return nullptr; } -bool Device::Control::InputGateOn() -{ - if (SConfig::GetInstance().m_BackgroundInput) - return true; - else if (Host_RendererHasFocus() || Host_UIHasFocus()) - return true; - else - return false; -} - // // DeviceQualifier :: ToString // |
