summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2013-10-20 20:06:25 +0000
committerSimon Howard2013-10-20 20:06:25 +0000
commit476323d7dd83dc69619e0dfe136b22637643f971 (patch)
tree9c937b674c18a04d9ccdbac3295558e59c298cb2 /src
parentd6ca2360c88b3f07dc69d488d7bc611c92ec5c4e (diff)
downloadchocolate-doom-476323d7dd83dc69619e0dfe136b22637643f971.tar.gz
chocolate-doom-476323d7dd83dc69619e0dfe136b22637643f971.tar.bz2
chocolate-doom-476323d7dd83dc69619e0dfe136b22637643f971.zip
Use OPL MIDI playback as the default music device.
Subversion-branch: /branches/v2-branch Subversion-revision: 2714
Diffstat (limited to 'src')
-rw-r--r--src/i_sound.c2
-rw-r--r--src/setup/sound.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/i_sound.c b/src/i_sound.c
index 19a697d8..5106cf97 100644
--- a/src/i_sound.c
+++ b/src/i_sound.c
@@ -52,7 +52,7 @@ int snd_cachesize = 64 * 1024 * 1024;
static sound_module_t *sound_module;
static music_module_t *music_module;
-int snd_musicdevice = SNDDEVICE_GENMIDI;
+int snd_musicdevice = SNDDEVICE_SB;
int snd_sfxdevice = SNDDEVICE_SB;
// Sound modules
diff --git a/src/setup/sound.c b/src/setup/sound.c
index dae07413..9c635335 100644
--- a/src/setup/sound.c
+++ b/src/setup/sound.c
@@ -70,7 +70,7 @@ static char *cfg_extension[] = { "cfg", NULL };
// Config file variables:
int snd_sfxdevice = SNDDEVICE_SB;
-int snd_musicdevice = SNDDEVICE_GENMIDI;
+int snd_musicdevice = SNDDEVICE_SB;
int snd_samplerate = 44100;
int opl_io_port = 0x388;
int snd_cachesize = 64 * 1024 * 1024;