diff options
| author | 2024-01-17 22:01:33 -0600 | |
|---|---|---|
| committer | 2024-01-17 22:47:56 -0600 | |
| commit | 72f803c366f5406bc0098821f237c6185d1ed034 (patch) | |
| tree | eb24af3dfdcb580a3236cd5f95cfdeb8eaa38252 /src/input_common/input_mapping.cpp | |
| parent | Merge pull request #12689 from liamwhite/remove-format (diff) | |
| download | yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.gz yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.xz yuzu-72f803c366f5406bc0098821f237c6185d1ed034.zip | |
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 | ||