diff options
| author | 2024-02-24 00:38:13 -0500 | |
|---|---|---|
| committer | 2024-02-24 00:38:13 -0500 | |
| commit | d1e0039bc87a28e42b05b324d0f15dc063a898b1 (patch) | |
| tree | c17bd7729a3e6ec78a9e261c38a7dd013a4f3832 /src/input_common/input_engine.h | |
| parent | Merge pull request #13146 from wheremyfoodat/patch-1 (diff) | |
| parent | android: Play vibrations asynchronously (diff) | |
| download | yuzu-d1e0039bc87a28e42b05b324d0f15dc063a898b1.tar.gz yuzu-d1e0039bc87a28e42b05b324d0f15dc063a898b1.tar.xz yuzu-d1e0039bc87a28e42b05b324d0f15dc063a898b1.zip | |
Merge pull request #13142 from t895/vibration-queue
android: Play vibrations asynchronously
Diffstat (limited to 'src/input_common/input_engine.h')
| -rw-r--r-- | src/input_common/input_engine.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h index c2d0cbb34..3e328509b 100644 --- a/src/input_common/input_engine.h +++ b/src/input_common/input_engine.h | |||
| @@ -46,6 +46,11 @@ enum class EngineInputType { | |||
| 46 | Nfc, | 46 | Nfc, |
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | struct VibrationRequest { | ||
| 50 | PadIdentifier identifier; | ||
| 51 | Common::Input::VibrationStatus vibration; | ||
| 52 | }; | ||
| 53 | |||
| 49 | namespace std { | 54 | namespace std { |
| 50 | // Hash used to create lists from PadIdentifier data | 55 | // Hash used to create lists from PadIdentifier data |
| 51 | template <> | 56 | template <> |