From cc74d41952a4487276790234588714ff82065908 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 2 Sep 2014 00:49:28 +0200 Subject: [PATCH] (Softfilter) buildfix for targets that don't have HAVE_THREADS defined --- gfx/filter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/filter.c b/gfx/filter.c index af0dd6678915..8698ef9ac5a7 100644 --- a/gfx/filter.c +++ b/gfx/filter.c @@ -23,9 +23,6 @@ #include "../performance.h" #include -#ifdef HAVE_THREADS -#include "../thread.h" - struct rarch_soft_plug { #ifdef HAVE_DYLIB @@ -34,6 +31,9 @@ struct rarch_soft_plug const struct softfilter_implementation *impl; }; +#ifdef HAVE_THREADS +#include "../thread.h" + struct filter_thread_data { sthread_t *thread;