예제 #1
0
파일: dma.c 프로젝트: icanhas/yantar
/* shutdown sound engine */
static void
S_Base_Shutdown(void)
{
    if(!s_soundStarted)
        return;
    SNDDMA_Shutdown();
    SND_shutdown();
    s_soundStarted = 0;
    s_numSfx = 0;
    cmdremove("s_info");
}
예제 #2
0
void S_Base_Shutdown( void ) {
	if ( !s_soundStarted ) {
		return;
	}

	SNDDMA_Shutdown();
	SND_shutdown();

	s_soundStarted = 0;
	s_numSfx = 0;

	Cmd_RemoveCommand("s_info");
}