예제 #1
0
파일: snd_dma.c 프로젝트: fretn/etlegacy
void S_Base_StopAllSounds(void)
{
	if (!s_soundStarted)
	{
		return;
	}

	S_Base_ClearSoundBuffer(qtrue);
}
예제 #2
0
/*
==================
S_StopAllSounds
==================
*/
void S_Base_StopAllSounds(void) {
	if ( !s_soundStarted ) {
		return;
	}

	// stop the background music
	S_Base_StopBackgroundTrack();

	S_Base_ClearSoundBuffer ();
}
예제 #3
0
파일: dma.c 프로젝트: icanhas/yantar
static void
S_Base_StopAllSounds(void)
{
    if(!s_soundStarted)
        return;

    /* stop the background music */
    S_Base_StopBackgroundTrack();

    S_Base_ClearSoundBuffer ();
}