From 13e03cc327ff2e70fdbdc329d5cd0f0af9394431 Mon Sep 17 00:00:00 2001 From: niklascfw Date: Fri, 3 Jul 2026 17:24:04 +0200 Subject: [PATCH] hid: Allow Power button regardless of Joy Con connection --- source/hid/hid.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/hid/hid.c b/source/hid/hid.c index 5469ce0..396681b 100644 --- a/source/hid/hid.c +++ b/source/hid/hid.c @@ -74,6 +74,8 @@ Input_t *hidRead(){ else inputs.a = inputs.power; + inputs.a |= inputs.power; + return &inputs; }