diff --git a/src/frontend-common/fullscreen_ui.cpp b/src/frontend-common/fullscreen_ui.cpp index e02ba24b4..55896ffff 100644 --- a/src/frontend-common/fullscreen_ui.cpp +++ b/src/frontend-common/fullscreen_ui.cpp @@ -772,7 +772,7 @@ void BeginInputBinding(InputBindingType type, const std::string_view& section, c { auto callback = [](const ControllerInterface::Hook& hook) -> ControllerInterface::Hook::CallbackResult { // ignore if axis isn't at least halfway - if (hook.type == ControllerInterface::Hook::Type::Axis && std::abs(std::get(hook.value) > 0.5f)) + if (hook.type == ControllerInterface::Hook::Type::Axis && std::abs(std::get(hook.value)) < 0.5f) return ControllerInterface::Hook::CallbackResult::ContinueMonitoring; TinyString value;