summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.cpp
diff options
context:
space:
mode:
authorMorph1984 <39850852+Morph1984@users.noreply.github.com>2019-09-04 16:06:38 +0200
committerGitHub <noreply@github.com>2019-09-04 16:06:38 +0200
commitd6969fa7d4fed7460530ab2e17f48043c8613f6b (patch)
tree35353348963df3a9401b1b4b61947b6d0236fe67 /src/core/hle/service/hid/hid.cpp
parentUpdate npad.h (diff)
downloadyuzu-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 '')
-rw-r--r--src/core/hle/service/hid/hid.cpp4
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) {