mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-26 10:49:21 +00:00
Fix inverted nocdrom check that was causing CDs not to mount.
This commit is contained in:
parent
58f4fa8425
commit
889c88d6c8
@ -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