aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-05-05 12:02:15 -0700
committerGitHub <noreply@github.com>2023-05-05 12:02:15 -0700
commitbb2e407772cde74610e191ec2f66e1afafc03a1e (patch)
treec80cc19667c87fefb14b326474066326c2d00e7d /src
parent16939b1a6e14459f1cc8416d46715b09572b4c06 (diff)
parent8df3aed2f154193869881c4eccf507f9d1ba5ff4 (diff)
Merge pull request #10159 from german77/home_screenshotmainline-0-1422
core: hid: Fix state of capture and home buttons
Diffstat (limited to 'src')
-rw-r--r--src/core/hid/emulated_controller.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp
index a70f8807cb..db71f1c19a 100644
--- a/src/core/hid/emulated_controller.cpp
+++ b/src/core/hid/emulated_controller.cpp
@@ -551,6 +551,8 @@ void EmulatedController::EnableSystemButtons() {
void EmulatedController::DisableSystemButtons() {
std::scoped_lock lock{mutex};
system_buttons_enabled = false;
+ controller.home_button_state.raw = 0;
+ controller.capture_button_state.raw = 0;
}
void EmulatedController::ResetSystemButtons() {
@@ -734,6 +736,8 @@ void EmulatedController::SetButton(const Common::Input::CallbackStatus& callback
if (is_configuring) {
controller.npad_button_state.raw = NpadButton::None;
controller.debug_pad_button_state.raw = 0;
+ controller.home_button_state.raw = 0;
+ controller.capture_button_state.raw = 0;
lock.unlock();
TriggerOnChange(ControllerTriggerType::Button, false);
return;