diff options
| author | bunnei <bunneidev@gmail.com> | 2020-10-07 14:54:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-07 14:54:05 -0700 |
| commit | 92adb69fa7fa21d2f5e078e9473c0ea08e009a71 (patch) | |
| tree | f4093ecf2ed67a34a1863a7ce383cb6b577ceda0 /src/core/hle/service/hid/controllers/npad.cpp | |
| parent | cc0dc3280d4fd31900674df31e036eb052210b08 (diff) | |
| parent | 6380731486e687a0a6b60ac3a1bd68812e538e66 (diff) | |
Merge pull request #4736 from Morph1984/home-button-input-protection-stub
hid: Stub HomeButtonInputProtection service commands
Diffstat (limited to 'src/core/hle/service/hid/controllers/npad.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/npad.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.cpp b/src/core/hle/service/hid/controllers/npad.cpp index a03af8df4..2de4ed348 100644 --- a/src/core/hle/service/hid/controllers/npad.cpp +++ b/src/core/hle/service/hid/controllers/npad.cpp @@ -846,6 +846,15 @@ Controller_NPad::LedPattern Controller_NPad::GetLedPattern(u32 npad_id) { } } +bool Controller_NPad::IsUnintendedHomeButtonInputProtectionEnabled(u32 npad_id) const { + return unintended_home_button_input_protection[NPadIdToIndex(npad_id)]; +} + +void Controller_NPad::SetUnintendedHomeButtonInputProtectionEnabled(bool is_protection_enabled, + u32 npad_id) { + unintended_home_button_input_protection[NPadIdToIndex(npad_id)] = is_protection_enabled; +} + void Controller_NPad::SetVibrationEnabled(bool can_vibrate) { can_controllers_vibrate = can_vibrate; } |
