summaryrefslogtreecommitdiff
path: root/src/heretic
diff options
context:
space:
mode:
authorSimon Howard2008-09-25 18:14:46 +0000
committerSimon Howard2008-09-25 18:14:46 +0000
commit6ebcafd7003cce44d1edd1115e737f1aa826ba1c (patch)
tree415dd7efa69bbbee473447e62350b7a88b7551b3 /src/heretic
parentfacc2f70b1bfac51ddaefb78fcbef04a8d5c8e2b (diff)
downloadchocolate-doom-6ebcafd7003cce44d1edd1115e737f1aa826ba1c.tar.gz
chocolate-doom-6ebcafd7003cce44d1edd1115e737f1aa826ba1c.tar.bz2
chocolate-doom-6ebcafd7003cce44d1edd1115e737f1aa826ba1c.zip
Add option to low-level sound API to disable the DS prefix for sound
effects, for Heretic. Fix sound links. Subversion-branch: /branches/raven-branch Subversion-revision: 1281
Diffstat (limited to 'src/heretic')
-rw-r--r--src/heretic/s_sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heretic/s_sound.c b/src/heretic/s_sound.c
index a67a56c8..86483402 100644
--- a/src/heretic/s_sound.c
+++ b/src/heretic/s_sound.c
@@ -493,7 +493,7 @@ void S_UpdateSounds(mobj_t * listener)
void S_Init(void)
{
soundCurve = Z_Malloc(MAX_SND_DIST, PU_STATIC, NULL);
- I_InitSound();
+ I_InitSound(false);
if (snd_Channels > 8)
{
snd_Channels = 8;