From a11f8419feaff16649b249ad31ed49d30a901979 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 12 Jul 2015 01:36:03 +0200 Subject: [PATCH] Move overlays over to single threaded --- runloop_data.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runloop_data.c b/runloop_data.c index f7dddbe795..6902c633e5 100644 --- a/runloop_data.c +++ b/runloop_data.c @@ -132,9 +132,6 @@ static void data_runloop_iterate(bool is_thread) #ifdef HAVE_RPNG rarch_main_data_nbio_image_iterate (is_thread); #endif -#ifdef HAVE_OVERLAY - rarch_main_data_overlay_iterate (is_thread); -#endif #ifdef HAVE_NETWORKING rarch_main_data_http_iterate (is_thread); #endif @@ -265,6 +262,9 @@ void rarch_main_data_iterate(void) #ifdef HAVE_RPNG rarch_main_data_nbio_image_upload_iterate(false); #endif +#ifdef HAVE_OVERLAY + rarch_main_data_overlay_iterate (false); +#endif #ifdef HAVE_MENU #ifdef HAVE_LIBRETRODB