(svn r50) -Fix hopefully the win98 crashes related to music/sound (orudge)

This commit is contained in:
darkvater
2004-08-13 23:39:48 +00:00
parent 15d60c09f5
commit b7e14169f8
2 changed files with 6 additions and 4 deletions

View File

@@ -62,8 +62,10 @@ bool seeking = false;
static char * DMusicMidiStart(char **parm)
{
InitDirectMusic();
return 0;
if (InitDirectMusic() == true)
return(0);
else
return(false);
}
static void DMusicMidiStop()