diff options
author | Simon Howard | 2009-06-10 20:46:25 +0000 |
---|---|---|
committer | Simon Howard | 2009-06-10 20:46:25 +0000 |
commit | 17bca65007022e49448b9f4d30424576fa3048d4 (patch) | |
tree | 35a3521dc449eac945c484ade0467b530f25790d | |
parent | 134c28804f8d0cdc2346d8a89c069e09f8809677 (diff) | |
download | chocolate-doom-17bca65007022e49448b9f4d30424576fa3048d4.tar.gz chocolate-doom-17bca65007022e49448b9f4d30424576fa3048d4.tar.bz2 chocolate-doom-17bca65007022e49448b9f4d30424576fa3048d4.zip |
Fix build with FEATURE_SOUND disabled.
Subversion-branch: /branches/raven-branch
Subversion-revision: 1589
-rw-r--r-- | src/i_sound.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i_sound.c b/src/i_sound.c index bcdac459..34f4ea46 100644 --- a/src/i_sound.c +++ b/src/i_sound.c @@ -413,6 +413,8 @@ void I_BindSoundVariables(void) M_BindVariable("snd_sbdma", &snd_sbdma); M_BindVariable("snd_mport", &snd_mport); M_BindVariable("snd_samplerate", &snd_samplerate); +#ifdef FEATURE_SOUND M_BindVariable("use_libsamplerate", &use_libsamplerate); +#endif } |