Move overlays over to single threaded

This commit is contained in:
twinaphex 2015-07-12 01:36:03 +02:00
parent 028c9b5e3c
commit a11f8419fe

View File

@ -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