- Add stopmusic command

- Make cvar s_muted read-only
This commit is contained in:
Thilo Schulz 2009-11-10 01:55:54 +00:00
parent 2a0812bc06
commit be0a82d496
3 changed files with 21 additions and 6 deletions

View file

@ -33,10 +33,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "snd_codec.h"
#include "client.h"
void S_Play_f(void);
void S_SoundList_f(void);
void S_Music_f(void);
void S_Update_( void );
void S_Base_StopAllSounds(void);
void S_Base_StopBackgroundTrack( void );
@ -1315,7 +1311,9 @@ void S_Base_StartBackgroundTrack( const char *intro, const char *loop ){
}
Com_DPrintf( "S_StartBackgroundTrack( %s, %s )\n", intro, loop );
if ( !intro[0] ) {
if(!*intro)
{
S_Base_StopBackgroundTrack();
return;
}