From 3f41c2b82222ae480647e4f24c9d3f66ccfafa97 Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Wed, 29 May 2019 18:22:16 +1000 Subject: [PATCH] libiosuhax: Use wiiu headers instead of redefining --- deps/libiosuhax/os_functions.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/deps/libiosuhax/os_functions.h b/deps/libiosuhax/os_functions.h index 5f5d3a1865..6135236344 100644 --- a/deps/libiosuhax/os_functions.h +++ b/deps/libiosuhax/os_functions.h @@ -6,6 +6,11 @@ extern "C" { #endif #define OS_MUTEX_SIZE 44 + +// RetroArch mod: use existing headers; prevents conflicts in griffin +#include +#include +#if 0 #ifndef __WUT__ //!---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -41,4 +46,6 @@ extern int IOS_Close(int fd); } #endif +#endif // 0 + #endif // __OS_FUNCTIONS_H_