From 6ee2964818c58fd6d7c512d9f61d2a9d343ebf20 Mon Sep 17 00:00:00 2001 From: asvitkine <> Date: Sat, 21 Apr 2012 16:04:51 +0000 Subject: [PATCH] Fix inverted check from my previous commit. --- BasiliskII/src/MacOSX/sys_darwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/MacOSX/sys_darwin.cpp b/BasiliskII/src/MacOSX/sys_darwin.cpp index 75fa2b52..dd6203d2 100644 --- a/BasiliskII/src/MacOSX/sys_darwin.cpp +++ b/BasiliskII/src/MacOSX/sys_darwin.cpp @@ -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)); }