Beispiel #1
0
/**
 * @brief Pauses all the sounds in a group.
 *
 *    @param Group to pause sounds.
 */
void sound_pauseGroup( int group )
{
   if (sound_disabled)
      return;

   sound_sys_pauseGroup( group );
}
Beispiel #2
0
/**
 * @brief Pauses all the sounds.
 */
void sound_pause (void)
{
   if (sound_disabled)
      return;

   sound_sys_pause();

   if (snd_compression >= 0)
      sound_sys_pauseGroup( snd_compressionG );
}