mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-11 10:30:09 +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)
|
void DarwinSysInit(void)
|
||||||
{
|
{
|
||||||
if (!PrefsFindBool("nocdrom")) {
|
if (PrefsFindBool("nocdrom")) {
|
||||||
media_thread_active = (pthread_create(&media_thread, NULL, media_poll_func, NULL) == 0);
|
media_thread_active = (pthread_create(&media_thread, NULL, media_poll_func, NULL) == 0);
|
||||||
D(bug("Media poll thread installed (%ld)\n", media_thread));
|
D(bug("Media poll thread installed (%ld)\n", media_thread));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user