diff options
| author | 2023-05-05 22:48:52 -0600 | |
|---|---|---|
| committer | 2023-05-05 22:49:56 -0600 | |
| commit | 9b771bcb8f2da7af507aa7be1b44599901028284 (patch) | |
| tree | 56de2b3ecd4a897731e66ca4f7d2fb9754e3bdda /src/input_common/input_mapping.cpp | |
| parent | Merge pull request #10153 from FernandoS27/a-quickie-fixie (diff) | |
| download | yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.gz yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.xz yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.zip | |
input_common: Add experimental motion to button
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 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) { | |||
| 82 | new_input.Set("axis", data.index); | 82 | new_input.Set("axis", data.index); |
| 83 | new_input.Set("threshold", 0.5f); | 83 | new_input.Set("threshold", 0.5f); |
| 84 | break; | 84 | break; |
| 85 | case EngineInputType::Motion: | ||
| 86 | new_input.Set("motion", data.index); | ||
| 87 | break; | ||
| 85 | default: | 88 | default: |
| 86 | return; | 89 | return; |
| 87 | } | 90 | } |