diff options
author | german77 <[email protected]> | 2023-05-05 22:48:52 -0600 |
---|---|---|
committer | german77 <[email protected]> | 2023-05-05 22:49:56 -0600 |
commit | 9b771bcb8f2da7af507aa7be1b44599901028284 (patch) | |
tree | 56de2b3ecd4a897731e66ca4f7d2fb9754e3bdda /src/input_common | |
parent | 2506594c505c9b2b3949bbd34345677bcafe2cef (diff) | |
download | yuzu-android-9b771bcb8f2da7af507aa7be1b44599901028284.tar.gz yuzu-android-9b771bcb8f2da7af507aa7be1b44599901028284.zip |
input_common: Add experimental motion to button
Diffstat (limited to 'src/input_common')
-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 9361b00c5..8c2ee4eb3 100644 --- a/src/input_common/input_mapping.cpp +++ b/src/input_common/input_mapping.cpp @@ -82,6 +82,9 @@ void MappingFactory::RegisterButton(const MappingData& data) { new_input.Set("axis", data.index); new_input.Set("threshold", 0.5f); break; + case EngineInputType::Motion: + new_input.Set("motion", data.index); + break; default: return; } |