Exemple #1
0
void S_Base_StopAllSounds(void)
{
	if (!s_soundStarted)
	{
		return;
	}

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

	// stop the background music
	S_Base_StopBackgroundTrack();

	S_Base_ClearSoundBuffer ();
}
Exemple #3
0
static void
S_Base_StopAllSounds(void)
{
    if(!s_soundStarted)
        return;

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

    S_Base_ClearSoundBuffer ();
}