(svn r11154) -Fix [FS#1239]: MIDI failing to play under Windows 95, 98 and ME.

This commit is contained in:
rubidium 2007-09-24 19:11:26 +00:00
parent fc371ad994
commit b12785cf7c
1 changed files with 5 additions and 1 deletions

View File

@ -142,7 +142,11 @@ const char *MusicDriver_Win32::Start(const char * const *parm)
}
if (NULL == (_midi.wait_obj = CreateEvent(NULL, FALSE, FALSE, NULL))) return "Failed to create event";
if (NULL == (_midi.thread = CreateThread(NULL, 8192, MidiThread, 0, 0, NULL))) return "Failed to create thread";
/* The lpThreadId parameter of CreateThread (the last parameter)
* may NOT be NULL on Windows 95, 98 and ME. */
DWORD threadId;
if (NULL == (_midi.thread = CreateThread(NULL, 8192, MidiThread, 0, 0, &threadId))) return "Failed to create thread";
return NULL;
}