summaryrefslogtreecommitdiff
path: root/src/m_misc.c
diff options
context:
space:
mode:
authorSimon Howard2007-06-14 21:45:50 +0000
committerSimon Howard2007-06-14 21:45:50 +0000
commit0480c925192df4f60416f3676ff4a295e2bc9e27 (patch)
tree85e0b6a6834ade2bcf6a1d367831860eb718516e /src/m_misc.c
parent5aa5e1fed5f7245a942bbfee43935d58a990deb5 (diff)
downloadchocolate-doom-0480c925192df4f60416f3676ff4a295e2bc9e27.tar.gz
chocolate-doom-0480c925192df4f60416f3676ff4a295e2bc9e27.tar.bz2
chocolate-doom-0480c925192df4f60416f3676ff4a295e2bc9e27.zip
Add configuration file variable to change the sound sample rate
(snd_samplerate) Subversion-branch: /trunk/chocolate-doom Subversion-revision: 906
Diffstat (limited to 'src/m_misc.c')
-rw-r--r--src/m_misc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/m_misc.c b/src/m_misc.c
index ee3aae95..2d59675e 100644
--- a/src/m_misc.c
+++ b/src/m_misc.c
@@ -284,6 +284,7 @@ extern int vanilla_demo_limit;
extern int snd_musicdevice;
extern int snd_sfxdevice;
+extern int snd_samplerate;
// dos specific options: these are unused but should be maintained
// so that the config file can be shared between chocolate
@@ -406,6 +407,7 @@ static default_t extra_defaults_list[] =
{"novert", &novert, DEFAULT_INT, 0, 0},
{"mouse_acceleration", &mouse_acceleration, DEFAULT_FLOAT, 0, 0},
{"mouse_threshold", &mouse_threshold, DEFAULT_INT, 0, 0},
+ {"snd_samplerate", &snd_samplerate, DEFAULT_INT, 0, 0},
{"show_endoom", &show_endoom, DEFAULT_INT, 0, 0},
{"vanilla_savegame_limit", &vanilla_savegame_limit, DEFAULT_INT, 0, 0},
{"vanilla_demo_limit", &vanilla_demo_limit, DEFAULT_INT, 0, 0},