diff options
author | Morph1984 <39850852+Morph1984@users.noreply.github.com> | 2019-09-04 10:06:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-04 10:06:38 -0400 |
commit | d6969fa7d4fed7460530ab2e17f48043c8613f6b (patch) | |
tree | 35353348963df3a9401b1b4b61947b6d0236fe67 /src | |
parent | ee35f7adf7864df4a9b511c71b08e8fc980e484f (diff) |
clang-format
Diffstat (limited to 'src')
-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 6446edae30..f8b1ca8166 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) { |