From 9d6dd79486537dc10588bfc0af8165e6fd1d1bea Mon Sep 17 00:00:00 2001 From: kalaposfos13 <153381648+kalaposfos13@users.noreply.github.com> Date: Fri, 15 Nov 2024 09:45:32 +0100 Subject: [PATCH] clang --- src/input/input_handler.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/input/input_handler.h b/src/input/input_handler.h index 7c1798107..a4184bf2d 100644 --- a/src/input/input_handler.h +++ b/src/input/input_handler.h @@ -308,14 +308,13 @@ public: bool operator<(const BindingConnection& other) const { // a button is a higher priority than an axis, as buttons can influence axes // (e.g. joystick_halfmode) - if( output->isButton() && other.output->isAxis()) { + if (output->isButton() && other.output->isAxis()) { return true; } if (binding < other.binding) { return true; } return false; - } };