From e647503eb2730ae23b79fae6add768d4180d66d2 Mon Sep 17 00:00:00 2001 From: Shiz Date: Sat, 29 Jun 2019 02:17:58 +0200 Subject: [PATCH] Core/HW/WiimoteReal: add missing Linux include IOLinux.cpp should include as it uses select() functionality. On certain platforms it's included implicitly by other headers, which is why it compiled before. This makes it also work on musl platforms. --- Source/Core/Core/HW/WiimoteReal/IOLinux.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/HW/WiimoteReal/IOLinux.cpp b/Source/Core/Core/HW/WiimoteReal/IOLinux.cpp index 757d31e1b6..de0831e796 100644 --- a/Source/Core/Core/HW/WiimoteReal/IOLinux.cpp +++ b/Source/Core/Core/HW/WiimoteReal/IOLinux.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include "Common/CommonTypes.h"