Remove second EMIDICard / ForceEMIDI parameter from MUSIC_Init which only served to clobber the value entered using the cvar

git-svn-id: https://svn.eduke32.com/eduke32@8257 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2019-10-24 05:47:06 +00:00 committed by Christoph Oelckers
parent 9215812ed6
commit 55744eff09
3 changed files with 3 additions and 4 deletions

View file

@ -1197,7 +1197,7 @@ void MusicStartup(void)
{
// if they chose None lets return
if (MUSIC_Init(0, 0) == MUSIC_Ok || MUSIC_Init(1, 0) == MUSIC_Ok)
if (MUSIC_Init(MusicDevice) == MUSIC_Ok || MUSIC_Init(0) == MUSIC_Ok || MUSIC_Init(1) == MUSIC_Ok)
{
MusicInitialized = TRUE;
MUSIC_SetVolume(mus_volume);