diff options
author | german77 <juangerman-13@hotmail.com> | 2023-05-06 06:48:52 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2023-05-06 06:49:56 +0200 |
commit | 9b771bcb8f2da7af507aa7be1b44599901028284 (patch) | |
tree | 56de2b3ecd4a897731e66ca4f7d2fb9754e3bdda /src/input_common | |
parent | Merge pull request #10153 from FernandoS27/a-quickie-fixie (diff) | |
download | yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.gz yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.bz2 yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.lz yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.xz yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.tar.zst yuzu-9b771bcb8f2da7af507aa7be1b44599901028284.zip |
Diffstat (limited to '')
-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; } |