mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Deactivate the master DSP unit when pausing the sound on title maps as well as on regular maps.
SVN r3857 (trunk)
This commit is contained in:
parent
40cefe6107
commit
11a0298f33
1 changed files with 1 additions and 1 deletions
|
@ -1784,7 +1784,7 @@ void S_SetSoundPaused (int state)
|
||||||
S_PauseSound(false, true);
|
S_PauseSound(false, true);
|
||||||
if (GSnd != NULL)
|
if (GSnd != NULL)
|
||||||
{
|
{
|
||||||
GSnd->SetInactive(gamestate == GS_LEVEL ?
|
GSnd->SetInactive(gamestate == GS_LEVEL || gamestate == GS_TITLELEVEL ?
|
||||||
SoundRenderer::INACTIVE_Complete :
|
SoundRenderer::INACTIVE_Complete :
|
||||||
SoundRenderer::INACTIVE_Mute);
|
SoundRenderer::INACTIVE_Mute);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue