summaryrefslogtreecommitdiff
path: root/src/m_misc.c
diff options
context:
space:
mode:
authorSimon Howard2006-09-15 23:47:12 +0000
committerSimon Howard2006-09-15 23:47:12 +0000
commitd74844c6c12f8dacfd13cfd2934bdae0fb28601b (patch)
treecc90d947adc9aadcfec724f541006daec031bfb5 /src/m_misc.c
parent3de2ca16872c8436fedf6b9325f1f2c153f05609 (diff)
downloadchocolate-doom-d74844c6c12f8dacfd13cfd2934bdae0fb28601b.tar.gz
chocolate-doom-d74844c6c12f8dacfd13cfd2934bdae0fb28601b.tar.bz2
chocolate-doom-d74844c6c12f8dacfd13cfd2934bdae0fb28601b.zip
Interpret the snd_sfxdevice and snd_musicdevice values in the configuration
file and act the same as Vanilla Doom. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 606
Diffstat (limited to 'src/m_misc.c')
-rw-r--r--src/m_misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/m_misc.c b/src/m_misc.c
index 95cc0595..1c6a8c8f 100644
--- a/src/m_misc.c
+++ b/src/m_misc.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: m_misc.c 591 2006-08-31 22:11:08Z fraggle $
+// $Id: m_misc.c 606 2006-09-15 23:47:12Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -106,7 +106,7 @@
//-----------------------------------------------------------------------------
static const char
-rcsid[] = "$Id: m_misc.c 591 2006-08-31 22:11:08Z fraggle $";
+rcsid[] = "$Id: m_misc.c 606 2006-09-15 23:47:12Z fraggle $";
#include <stdio.h>
#include <stdlib.h>
@@ -297,8 +297,8 @@ extern int vanilla_demo_limit;
// so that the config file can be shared between chocolate
// doom and doom.exe
-static int snd_musicdevice = 0;
-static int snd_sfxdevice = 0;
+int snd_musicdevice = 0;
+int snd_sfxdevice = 0;
static int snd_sbport = 0;
static int snd_sbirq = 0;
static int snd_sbdma = 0;