diff options
author | Morph1984 <39850852+Morph1984@users.noreply.github.com> | 2019-09-04 16:06:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 16:06:38 +0200 |
commit | d6969fa7d4fed7460530ab2e17f48043c8613f6b (patch) | |
tree | 35353348963df3a9401b1b4b61947b6d0236fe67 /src/core/hle/service/hid | |
parent | Update npad.h (diff) | |
download | yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.tar yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.tar.gz yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.tar.bz2 yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.tar.lz yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.tar.xz yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.tar.zst yuzu-d6969fa7d4fed7460530ab2e17f48043c8613f6b.zip |
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 6446edae3..f8b1ca816 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -696,8 +696,8 @@ void Hid::IsVibrationPermitted(Kernel::HLERequestContext& ctx) { IPC::ResponseBuilder rb{ctx, 3}; rb.Push(RESULT_SUCCESS); - rb.Push(applet_resource->GetController<Controller_NPad>(HidController::NPad) - .IsVibrationEnabled()); + rb.Push( + applet_resource->GetController<Controller_NPad>(HidController::NPad).IsVibrationEnabled()); } void Hid::ActivateConsoleSixAxisSensor(Kernel::HLERequestContext& ctx) { |