mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
Remove an unnecessary if.
It needed during initial development of the patch, but with the refactoring of s_init, it became redundant.
This commit is contained in:
parent
01fb4f265d
commit
7d84800250
1 changed files with 3 additions and 4 deletions
|
@ -350,10 +350,9 @@ s_init (void)
|
|||
snd_jack_server = Cvar_Get ("snd_jack_server", "default", CVAR_ROM, NULL,
|
||||
"The name of the JACK server to connect to");
|
||||
|
||||
if (!snd_shutdown) {
|
||||
SND_SFX_Init ();
|
||||
SND_Channels_Init ();
|
||||
}
|
||||
SND_SFX_Init ();
|
||||
SND_Channels_Init ();
|
||||
|
||||
s_jack_connect ();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue