Prevent music changes from playing when unfocused

This commit is contained in:
fickleheart 2019-03-11 21:48:29 -05:00
parent 0f9648eac0
commit 1975a9b885
1 changed files with 4 additions and 0 deletions

View File

@ -1906,6 +1906,10 @@ static boolean S_PlayMusic(boolean looping)
}
S_InitMusicVolume(); // switch between digi and sequence volume
if (window_notinfocus && !cv_playmusicifunfocused.value)
I_PauseSong();
return true;
}