diff options
| author | 2024-01-18 09:16:58 -0500 | |
|---|---|---|
| committer | 2024-01-18 09:16:58 -0500 | |
| commit | 3092855d5ae1724ccef4d267e74b79b7790814f0 (patch) | |
| tree | d605942f87e77856c2a19c95c627ce178db6f706 /src/input_common/input_mapping.cpp | |
| parent | Merge pull request #12699 from t895/overlay-saving (diff) | |
| parent | input_common: Add android input engine (diff) | |
| download | yuzu-3092855d5ae1724ccef4d267e74b79b7790814f0.tar.gz yuzu-3092855d5ae1724ccef4d267e74b79b7790814f0.tar.xz yuzu-3092855d5ae1724ccef4d267e74b79b7790814f0.zip | |
Merge pull request #12702 from german77/android-input
input_common: Add android input engine
Diffstat (limited to 'src/input_common/input_mapping.cpp')
| -rw-r--r-- | src/input_common/input_mapping.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input_common/input_mapping.cpp b/src/input_common/input_mapping.cpp index 8c2ee4eb3..f1a1d7398 100644 --- a/src/input_common/input_mapping.cpp +++ b/src/input_common/input_mapping.cpp | |||
| @@ -210,6 +210,9 @@ bool MappingFactory::IsDriverValid(const MappingData& data) const { | |||
| 210 | if (data.engine == "analog_from_button") { | 210 | if (data.engine == "analog_from_button") { |
| 211 | return false; | 211 | return false; |
| 212 | } | 212 | } |
| 213 | if (data.engine == "virtual_gamepad") { | ||
| 214 | return false; | ||
| 215 | } | ||
| 213 | return true; | 216 | return true; |
| 214 | } | 217 | } |
| 215 | 218 | ||