From 65b1ae8a413608758c921ef19a79a69569292407 Mon Sep 17 00:00:00 2001 From: myfreeweb Date: Thu, 14 Jan 2021 16:36:14 +0300 Subject: [PATCH] Remove incorrect ifdef for Wayland on non-Linux - fix #10056 --- input/input_keymaps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/input_keymaps.c b/input/input_keymaps.c index 35a4c2576b..82677f34f5 100644 --- a/input/input_keymaps.c +++ b/input/input_keymaps.c @@ -50,7 +50,7 @@ #include "SDL.h" #endif -#if defined(__linux__) || defined(__linux__) && defined(HAVE_WAYLAND) +#if defined(__linux__) || defined(HAVE_WAYLAND) #include #include #endif