From a25a4d29a8e65f4faef68f2b807b29969565b163 Mon Sep 17 00:00:00 2001 From: pstef <3462925+pstef@users.noreply.github.com> Date: Thu, 27 Mar 2025 22:55:59 +0000 Subject: [PATCH] Silence a -Waddress warning --- input/drivers/udev_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/drivers/udev_input.c b/input/drivers/udev_input.c index 0a1205ad1e..f34caa6e78 100644 --- a/input/drivers/udev_input.c +++ b/input/drivers/udev_input.c @@ -3787,7 +3787,7 @@ static int16_t udev_input_state( } break; case RETRO_DEVICE_ANALOG: - if (binds[port]) + if (binds) { int id_minus_key = 0; int id_plus_key = 0;