aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/hid_core/frontend/emulated_controller.h
diff options
context:
space:
mode:
authorliamwhite <[email protected]>2024-01-26 09:57:40 -0500
committerGitHub <[email protected]>2024-01-26 09:57:40 -0500
commit4349cdba070b159181d7090a27beb794bb83e481 (patch)
tree1bd25e48ffeb2dcc0d033fdf3a900d91fa1e4360 /src/hid_core/frontend/emulated_controller.h
parent59aee2b4617811a07307fddcb03c0d55cdc8e16b (diff)
parentad4622da2cad626b1acdbf1c3985d4d5b6e86bb0 (diff)
downloadyuzu-android-4349cdba070b159181d7090a27beb794bb83e481.tar.gz
yuzu-android-4349cdba070b159181d7090a27beb794bb83e481.zip
Merge pull request #12769 from german77/no-log
core: hid: Reduce controller requests
Diffstat (limited to 'src/hid_core/frontend/emulated_controller.h')
-rw-r--r--src/hid_core/frontend/emulated_controller.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hid_core/frontend/emulated_controller.h b/src/hid_core/frontend/emulated_controller.h
index 168abe089..701b38300 100644
--- a/src/hid_core/frontend/emulated_controller.h
+++ b/src/hid_core/frontend/emulated_controller.h
@@ -581,7 +581,8 @@ private:
f32 motion_sensitivity{Core::HID::MotionInput::IsAtRestStandard};
u32 turbo_button_state{0};
std::size_t nfc_handles{0};
- VibrationValue last_vibration_value{DEFAULT_VIBRATION_VALUE};
+ std::array<VibrationValue, 2> last_vibration_value{DEFAULT_VIBRATION_VALUE,
+ DEFAULT_VIBRATION_VALUE};
// Temporary values to avoid doing changes while the controller is in configuring mode
NpadStyleIndex tmp_npad_type{NpadStyleIndex::None};