From ec4bad3aad4179a49cdc0923d3c19b90aa7196f3 Mon Sep 17 00:00:00 2001 From: Maufeat Date: Mon, 10 Nov 2025 13:55:22 +0100 Subject: [PATCH] change a bit the value for pressing duration --- src/core/hle/service/am/button_poller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/am/button_poller.cpp b/src/core/hle/service/am/button_poller.cpp index 2bf1ac397c..82668cf9de 100644 --- a/src/core/hle/service/am/button_poller.cpp +++ b/src/core/hle/service/am/button_poller.cpp @@ -20,9 +20,9 @@ ButtonPressDuration ClassifyPressDuration(std::chrono::steady_clock::time_point // TODO: determine actual thresholds // TODO: these are likely different for each button - if (dur < 500ms) { + if (dur < 400ms) { return ButtonPressDuration::ShortPressing; - } else if (dur < 1000ms) { + } else if (dur < 800ms) { return ButtonPressDuration::MiddlePressing; } else { return ButtonPressDuration::LongPressing;