From 14dbd278733ea5a2396daadad102f8cb73860f60 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 18 Jul 2014 19:57:31 +0200 Subject: [PATCH] (Driver) Move find_audio_driver outside of HAVE_THREADS in init_audio - man, this whole audio/input/video initing/deiniting is still hacky as shit. --- driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver.c b/driver.c index c2d70c3a77..97b5e3f9b4 100644 --- a/driver.c +++ b/driver.c @@ -742,8 +742,8 @@ void init_audio(void) return; } -#ifdef HAVE_THREADS find_audio_driver(); +#ifdef HAVE_THREADS if (g_extern.system.audio_callback.callback) { RARCH_LOG("Starting threaded audio driver ...\n");