diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-12-18 15:53:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-18 15:53:15 -0500 |
| commit | 8e33cf1c2bd1e15e33d94524835ba1d39c138afd (patch) | |
| tree | 9a56f7230c676b5a79d5656df7bdd2e907c1ba59 /src/core/hle/service/hid/hid.cpp | |
| parent | 6fb212784eb8eef5f4d1e1c2e9e14b884e1a5889 (diff) | |
| parent | c82e6dc81048352475cd64968f8733040a35d944 (diff) | |
Merge pull request #7593 from german77/brrr_test
core/hid: Cancel any vibration after the test
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 7163e1a4e..6e12381fb 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -1404,7 +1404,7 @@ void Hid::SendVibrationGcErmCommand(Kernel::HLERequestContext& ctx) { .high_frequency = 0.0f, }; default: - return Controller_NPad::DEFAULT_VIBRATION_VALUE; + return Core::HID::DEFAULT_VIBRATION_VALUE; } }(); |
