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:
Bill Currie 2012-05-28 07:58:11 +09:00
parent 01fb4f265d
commit 7d84800250

View file

@ -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 ();
}