No web UI if no threads
This commit is contained in:
parent
f202b3b143
commit
c1317cbad7
|
@ -120,7 +120,7 @@ void plugins_Reset(bool Manual)
|
||||||
//libExtDevice_Reset(Manual);
|
//libExtDevice_Reset(Manual);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(TARGET_NO_WEBUI)
|
#if !defined(TARGET_NO_WEBUI) && !defined(TARGET_NO_THREADS)
|
||||||
|
|
||||||
void* webui_th(void* p)
|
void* webui_th(void* p)
|
||||||
{
|
{
|
||||||
|
@ -165,7 +165,7 @@ int dc_init(int argc,wchar* argv[])
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(TARGET_NO_WEBUI)
|
#if !defined(TARGET_NO_WEBUI) && !defined(TARGET_NO_THREADS)
|
||||||
webui_thd.Start();
|
webui_thd.Start();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue