summaryrefslogtreecommitdiff
path: root/src/hexen/s_sound.h
diff options
context:
space:
mode:
authorSimon Howard2013-10-06 14:58:44 +0000
committerSimon Howard2013-10-06 14:58:44 +0000
commit6ec6095cb127421fc648781d0820d23d6e7a58a4 (patch)
treeeafd74cee78d87112b726c59d4e2f9576fb2370a /src/hexen/s_sound.h
parent9a4f30c23a7b87e5f5bf3e4e4039c845cba38d66 (diff)
downloadchocolate-doom-6ec6095cb127421fc648781d0820d23d6e7a58a4.tar.gz
chocolate-doom-6ec6095cb127421fc648781d0820d23d6e7a58a4.tar.bz2
chocolate-doom-6ec6095cb127421fc648781d0820d23d6e7a58a4.zip
Finish implementation of Hexen CD audio music mode.
Subversion-branch: /branches/v2-branch Subversion-revision: 2694
Diffstat (limited to 'src/hexen/s_sound.h')
-rw-r--r--src/hexen/s_sound.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hexen/s_sound.h b/src/hexen/s_sound.h
index b66a513e..f9f2ac5c 100644
--- a/src/hexen/s_sound.h
+++ b/src/hexen/s_sound.h
@@ -79,6 +79,7 @@ typedef struct
extern int snd_MaxVolume;
extern int snd_MusicVolume;
extern int snd_Channels;
+extern boolean cdmusic;
void S_Start(void);
void S_StartSound(mobj_t * origin, int sound_id);
@@ -95,5 +96,7 @@ void S_Init(void);
void S_GetChannelInfo(SoundInfo_t * s);
void S_SetMusicVolume(void);
boolean S_GetSoundPlayingInfo(mobj_t * mobj, int sound_id);
+boolean S_StartCustomCDTrack(int tracknum);
+int S_GetCurrentCDTrack(void);
#endif