Fix inverted check from my previous commit.

This commit is contained in:
asvitkine 2012-04-21 16:04:51 +00:00
parent 2b348f7c41
commit 6ee2964818

View File

@ -66,7 +66,7 @@ extern void SysMediaRemoved(const char *path, int type);
void DarwinSysInit(void)
{
if (!PrefsFindBool("nocdrom")) {
if (PrefsFindBool("nocdrom")) {
media_thread_active = (pthread_create(&media_thread, NULL, media_poll_func, NULL) == 0);
D(bug("Media poll thread installed (%ld)\n", media_thread));
}