summaryrefslogtreecommitdiff
path: root/src/heretic/i_sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/heretic/i_sound.h')
-rw-r--r--src/heretic/i_sound.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/heretic/i_sound.h b/src/heretic/i_sound.h
new file mode 100644
index 00000000..735bc12a
--- /dev/null
+++ b/src/heretic/i_sound.h
@@ -0,0 +1,23 @@
+#ifndef __SOUND__
+#define __SOUND__
+
+#define SND_TICRATE 140 // tic rate for updating sound
+#define SND_MAXSONGS 40 // max number of songs in game
+#define SND_SAMPLERATE 11025 // sample rate of sound effects
+
+typedef enum
+{
+ snd_none,
+ snd_PC,
+ snd_Adlib,
+ snd_SB,
+ snd_PAS,
+ snd_GUS,
+ snd_MPU,
+ snd_MPU2,
+ snd_MPU3,
+ snd_AWE,
+ NUM_SCARDS
+} cardenum_t;
+
+#endif