mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-23 19:29:18 +00:00
Fix inverted check from my previous commit.
This commit is contained in:
parent
2b348f7c41
commit
6ee2964818
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user