diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-10-03 16:25:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-03 16:25:40 -0400 |
| commit | 052c7395fbc0789147703a4c5cc754ae28f8f8bd (patch) | |
| tree | c6e206df257937e8373aeeb012e29ea74f0d0fc7 /Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp | |
| parent | cb6d476538afe85c25d30e8679b6f15abe5d1760 (diff) | |
| parent | 51ee05cb35f401c82adf815cbb4f4c3133e7ea84 (diff) | |
Merge pull request #9624 from JosJuice/input-override
Add new "input override" system for TAS input and Android touch controls
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp b/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp index 0a3de3e391..dc9830de3f 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp +++ b/Source/Core/InputCommon/ControllerEmu/ControllerEmu.cpp @@ -6,6 +6,7 @@ #include <memory> #include <mutex> #include <string> +#include <utility> #include "Common/IniFile.h" @@ -176,4 +177,15 @@ void EmulatedController::LoadDefaults(const ControllerInterface& ciface) SetDefaultDevice(default_device_string); } } + +void EmulatedController::SetInputOverrideFunction(InputOverrideFunction override_func) +{ + m_input_override_function = std::move(override_func); +} + +void EmulatedController::ClearInputOverrideFunction() +{ + m_input_override_function = {}; +} + } // namespace ControllerEmu |
