summaryrefslogtreecommitdiff
path: root/src/s_sound.h
diff options
context:
space:
mode:
authorSimon Howard2006-01-08 17:51:53 +0000
committerSimon Howard2006-01-08 17:51:53 +0000
commit96495a0ac6e1663ef0a6b137a24f73d46a039e52 (patch)
tree7255c684f315e42ed15778aaebae0ab80744ff1e /src/s_sound.h
parentd5794db799a0aa47c227bf4e12b4ddaf2b4415ec (diff)
downloadchocolate-doom-96495a0ac6e1663ef0a6b137a24f73d46a039e52.tar.gz
chocolate-doom-96495a0ac6e1663ef0a6b137a24f73d46a039e52.tar.bz2
chocolate-doom-96495a0ac6e1663ef0a6b137a24f73d46a039e52.zip
Add S_MusicPlaying function to query if music is still playing.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 271
Diffstat (limited to 'src/s_sound.h')
-rw-r--r--src/s_sound.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/s_sound.h b/src/s_sound.h
index 1b919b59..08b3ca69 100644
--- a/src/s_sound.h
+++ b/src/s_sound.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: s_sound.h 18 2005-07-23 18:56:07Z fraggle $
+// $Id: s_sound.h 271 2006-01-08 17:51:53Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -88,6 +88,9 @@ S_ChangeMusic
( int music_id,
int looping );
+// query if music is playing
+boolean S_MusicPlaying(void);
+
// Stops the music fer sure.
void S_StopMusic(void);
@@ -109,6 +112,9 @@ void S_SetSfxVolume(int volume);
//-----------------------------------------------------------------------------
//
// $Log$
+// Revision 1.4 2006/01/08 17:51:53 fraggle
+// Add S_MusicPlaying function to query if music is still playing.
+//
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//