diff options
author | Lioncash <mathew1800@gmail.com> | 2021-12-13 15:09:03 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-12-13 15:16:10 +0100 |
commit | 38f3442ea56a3ac9447924c015c2a9ade0f5bb83 (patch) | |
tree | 4fbdcc84b82ff753306647b309c8a0b128af02f0 /src/input_common/input_engine.h | |
parent | input_engine: std::move engine name where applicable (diff) | |
download | yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.tar yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.tar.gz yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.tar.bz2 yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.tar.lz yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.tar.xz yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.tar.zst yuzu-38f3442ea56a3ac9447924c015c2a9ade0f5bb83.zip |
Diffstat (limited to 'src/input_common/input_engine.h')
-rw-r--r-- | src/input_common/input_engine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h index b21adfabf..15cd5fa2e 100644 --- a/src/input_common/input_engine.h +++ b/src/input_common/input_engine.h @@ -119,7 +119,7 @@ public: // Sets rumble to a controller virtual Common::Input::VibrationError SetRumble( [[maybe_unused]] const PadIdentifier& identifier, - [[maybe_unused]] const Common::Input::VibrationStatus vibration) { + [[maybe_unused]] const Common::Input::VibrationStatus& vibration) { return Common::Input::VibrationError::NotSupported; } |