From f277489efc81c3ba3929748da5afd52bf143ef37 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 9 Oct 2018 15:35:39 +0200 Subject: [PATCH] Comment out pthread attr for 3DS --- libretro-common/rthreads/rthreads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-common/rthreads/rthreads.c b/libretro-common/rthreads/rthreads.c index 5d651dd003..e38ffb4249 100644 --- a/libretro-common/rthreads/rthreads.c +++ b/libretro-common/rthreads/rthreads.c @@ -165,8 +165,8 @@ sthread_t *sthread_create(void (*thread_func)(void*), void *userdata) return sthread_create_with_priority(thread_func, userdata, 0); } -/* TODO/FIXME - this needs to be implemented for Switch */ -#if !defined(SWITCH) && !defined(USE_WIN32_THREADS) +/* TODO/FIXME - this needs to be implemented for Switch/3DS */ +#if !defined(SWITCH) && !defined(USE_WIN32_THREADS) && !defined(_3DS) #define HAVE_THREAD_ATTR #endif