summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/controllers/npad.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-10-11 17:25:17 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-11-16 05:33:20 +0100
commit373408ae8c565cc401770e65776cae55a3545572 (patch)
treeecd2fcb40ee6856b5bbb072427cdc4f6e35f32fb /src/core/hle/service/hid/controllers/npad.h
parenthid: Stub IsVibrationDeviceMounted (diff)
downloadyuzu-373408ae8c565cc401770e65776cae55a3545572.tar
yuzu-373408ae8c565cc401770e65776cae55a3545572.tar.gz
yuzu-373408ae8c565cc401770e65776cae55a3545572.tar.bz2
yuzu-373408ae8c565cc401770e65776cae55a3545572.tar.lz
yuzu-373408ae8c565cc401770e65776cae55a3545572.tar.xz
yuzu-373408ae8c565cc401770e65776cae55a3545572.tar.zst
yuzu-373408ae8c565cc401770e65776cae55a3545572.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/controllers/npad.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.h b/src/core/hle/service/hid/controllers/npad.h
index c1b19103a..4dc2a974d 100644
--- a/src/core/hle/service/hid/controllers/npad.h
+++ b/src/core/hle/service/hid/controllers/npad.h
@@ -110,10 +110,10 @@ public:
static_assert(sizeof(NpadStyleSet) == 4, "NpadStyleSet is an invalid size");
struct VibrationValue {
- f32 amp_low;
- f32 freq_low;
- f32 amp_high;
- f32 freq_high;
+ f32 amp_low{0.0f};
+ f32 freq_low{160.0f};
+ f32 amp_high{0.0f};
+ f32 freq_high{320.0f};
};
static_assert(sizeof(VibrationValue) == 0x10, "Vibration is an invalid size");
@@ -148,8 +148,10 @@ public:
void SetNpadMode(u32 npad_id, NpadAssignments assignment_mode);
- void VibrateController(const std::vector<DeviceHandle>& vibration_device_handles,
- const std::vector<VibrationValue>& vibration_values);
+ bool VibrateControllerAtIndex(std::size_t npad_index, const VibrationValue& vibration_value);
+
+ void VibrateControllers(const std::vector<DeviceHandle>& vibration_device_handles,
+ const std::vector<VibrationValue>& vibration_values);
VibrationValue GetLastVibration(const DeviceHandle& vibration_device_handle) const;