mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Fix a wrongly negated condition in snd_win.c:SNDDMA_UnblockSound().
This commit is contained in:
parent
05bf637466
commit
d8432e78bb
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ SNDDMA_BlockSound (void)
|
|||
static void
|
||||
SNDDMA_UnblockSound (void)
|
||||
{
|
||||
if (!snd_blocked)
|
||||
if (snd_blocked)
|
||||
--snd_blocked;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue