diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-18 16:25:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 16:25:48 -0500 |
commit | e531d1fae986addc7253e14bcc569c38ab50ccb0 (patch) | |
tree | 82b68c763271ac1d15112a536136f7462cacadfb /src/input_common/input_mapping.cpp | |
parent | 41183b622f2acc821f2c9b213f01029b33a993e5 (diff) | |
parent | 17207939e50b64592f93c623219b70d26272df4d (diff) |
Merge pull request #9815 from german77/qt-mouse
Qt: Fix mouse scalling
Diffstat (limited to 'src/input_common/input_mapping.cpp')
-rw-r--r-- | src/input_common/input_mapping.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input_common/input_mapping.cpp b/src/input_common/input_mapping.cpp index d6e49d2c5b..6990a86b9e 100644 --- a/src/input_common/input_mapping.cpp +++ b/src/input_common/input_mapping.cpp @@ -194,6 +194,10 @@ bool MappingFactory::IsDriverValid(const MappingData& data) const { if (data.engine == "keyboard" && data.pad.port != 0) { return false; } + // Only port 0 can be mapped on the mouse + if (data.engine == "mouse" && data.pad.port != 0) { + return false; + } // To prevent mapping with two devices we disable any UDP except motion if (!Settings::values.enable_udp_controller && data.engine == "cemuhookudp" && data.type != EngineInputType::Motion) { |