summaryrefslogtreecommitdiff
path: root/src/i_sound.h
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/i_sound.h
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/i_sound.h')
-rw-r--r--src/i_sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i_sound.h b/src/i_sound.h
index 6737e8cb..a8562ae1 100644
--- a/src/i_sound.h
+++ b/src/i_sound.h
@@ -114,7 +114,7 @@ typedef struct
// Initialise sound module
// Returns true if successfully initialised
- boolean (*Init)(void);
+ boolean (*Init)(boolean use_sfx_prefix);
// Shutdown sound module
@@ -151,7 +151,7 @@ typedef struct
} sound_module_t;
-void I_InitSound(void);
+void I_InitSound(boolean use_sfx_prefix);
void I_ShutdownSound(void);
int I_GetSfxLumpNum(sfxinfo_t *sfxinfo);
void I_UpdateSound(void);