dynamic.c - Take out one RARCH_CONSOLE ifdef

This commit is contained in:
twinaphex 2016-02-03 12:46:20 +01:00
parent 9a5ce5fdb3
commit 7d6ad7435f

View File

@ -1229,10 +1229,11 @@ bool rarch_environment_cb(unsigned cmd, void *data)
runloop_ctl(RUNLOOP_CTL_SET_CONTENT_PATH, data);
}
#if defined(RARCH_CONSOLE)
frontend_driver_set_fork(true, true, false);
#elif defined(HAVE_DYNAMIC)
#if defined(HAVE_DYNAMIC)
rarch_ctl(RARCH_CTL_LOAD_CONTENT, NULL);
#else
if (frontend_driver_has_fork())
frontend_driver_set_fork(true, true, false);
#endif
}